/* =====================================
   FULL FINAL CSS (MATCH SCREENSHOT UI)
===================================== */

.rds-inline-box{
    width:100%;
    background: #e0efe3;
    padding: 30px 30px 1px 40px;
    border-radius: 18px;
    margin-top: 10px;
    box-sizing:border-box;
}

/* TOP FILTER ROW */
.rds-row{
    display:grid;
    grid-template-columns:1.7fr 1.15fr 1.15fr auto auto;
    gap:14px;
    align-items:center;
}

/* SEARCH INPUT */
.rds-keyword{
    width:100%;
    height:50px;
    border:none;
    border-radius:12px;
    background:#d8dfd6;
    padding:0 18px;
    font-size:15px;
    color:#555;
    outline:none;
    box-sizing:border-box;
}

/* SELECT2 FULL WIDTH */
.select2-container{
    width:100% !important;
}

/* SELECT BOX */
.select2-container--default .select2-selection--single{
    height:40px !important;
    border:none !important;
    border-radius:12px !important;
    background:#f7f7f7 !important;

    display:flex !important;
    align-items:center !important;

    padding:0 18px !important;
    box-sizing:border-box !important;
    margin-top:-15px;
   
}

/* SELECT TEXT */
.select2-container--default 
.select2-selection--single 
.select2-selection__rendered{
    height:40px !important;
    line-height:40px !important;
    display:flex !important;
    align-items:center !important;
    padding-left:0 !important;
    padding-right:30px !important;
    color:#777 !important;
    font-size:15px !important;
    
}

/* DROPDOWN ARROW */
.select2-container--default 
.select2-selection--single 
.select2-selection__arrow{
    height:10px !important;
    top:0 !important;
    right:12px !important;
}

.select2-container--default
.select2-selection--single
.select2-selection__placeholder{
        color: #666!important
}


/* REMOVE CLEAR ICON */
.select2-selection__clear{
    display:none !important;
}

/* BUTTONS */
.rds-search-btn,
.rds-clear-btn{
    height:50px;
    min-width:120px;
    padding:0 26px;
    border:none;
    border-radius:12px;
    background:#056ea1;
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s ease;
}

.rds-search-btn:hover,
.rds-clear-btn:hover{
    background:#04557c;
}

/* RESULT AREA */
.rds-results-wrap{
    margin-top:28px;
}

/* TABLE */
.rds-table{
    width:100%;
    border-collapse:collapse;
    background:transparent;
}

.rds-table th,
.rds-table td{
    border:1px solid #cad4ca;
    padding:14px 12px;
    text-align:left;
    font-size:15px;
}

.rds-table th{
    background:#f8f8f8;
    color:#444;
    font-weight:700;
    text-align:center;
}

.rds-table td{
    color:#fff;
    background:transparent;
     text-align:center;
}

.rds-table td a{
    color:#fff;
    font-weight:500;
    text-decoration:none;
}

.rds-row input {
    border: none;
    background: #f3f5f7;
    border-radius: 10px;
    padding: 20px 15px;
}

/* MOBILE */
@media(max-width:768px){

    .rds-row{
        grid-template-columns:1fr;
    }

    .rds-search-btn,
    .rds-clear-btn{
        width:100%;
    }

}