.results-search-sec{
    padding: 4rem 0;
}

#res_form{
    margin-top: 4rem;
}

.form-title{
    font-family: "Lexend", sans-serif;
}

#res_form .form-label{
    font-size: 0.9rem;
}

#res_form .form-control, #res_form .form-select{
    background-color: transparent;
    padding: 1rem;
    border-color: #222;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

#res_form .form-control:focus, #res_form .form-select:focus{
    box-shadow: none;
    background-color: transparent;
    border-color: #222;
    outline-offset: 2px;
    outline-width: 2px;
    outline-style: solid;
    outline-color: #e75937;
}

#res_form .form-control::placeholder{
    color: #999;
}


/************* táblázat **************/

.results-sec{
    padding-bottom: 4rem;
}


.table-header{
    font-weight: 600;
    background-color: var(--secondary-bg-color);
}

.table-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    
    padding: 0.7rem 0rem;
    
    border-bottom: 1px solid #BBB;
}

.table-content .table-row:hover{
    background-color: var(--primary-color);
    color: #FFF;
}

.table-row:hover .teljesitesek-url{
    color: #FFF;
    text-decoration: underline;
}

.teljesitesek-url{
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0 !important;
}

.teljesitesek-url:hover{
    color: #FFF;
}



/*1296px*/
.col-name{
    min-width: 220px;
    width: 22%;
    padding-left: 0.5rem;
}

.col-birth{
    min-width: 135px;
    width: 10%;
    text-align: center;
}

.col-city{
    min-width: 185px;
    width: 14%;
    text-align: center;
}

.col-date{
    min-width: 185px;
    width: 14%;
    text-align: center;
}

.col-method{
    min-width: 185px;
    width: 14%;
    text-align: center;
}

.col-trail{
    min-width: 185px;
    width: 14%;
    text-align: center;
}

.col-time{
    min-width: 90px;
    width: 7%;
    text-align: center;
}

@media(max-width: 500px){
    .table-row{
        margin-bottom: 2rem;
        padding: 1rem;
    }
    
    .col-name, .col-birth, .col-city, .col-date, .col-method, .col-trail, .col-time{
        min-width: none;
        width: 100%;
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .col-name{
        padding-left: 0rem;
    }
}