/* Start custom CSS for html, class: .elementor-element-27bfab6d */.application-status-wrapper{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:40px 20px;
    font-family:'Arial';
}

/* Language Switch */

.language-switch{
    display:flex;
    justify-content:flex-end;
    margin-bottom:40px;
}

.language-switch a{
    text-decoration:none;
    color:#fff;
    background:#f79400;
    padding:8px 18px;
    font-size:14px;
    font-weight:300;
}

.language-switch a:first-child{
    border-radius:30px 0 0 30px;
}

.language-switch a:last-child{
    border-radius:0 30px 30px 0;
}

.language-switch .active{
    background:#fff;
    color:#f79400;
    border:2px solid #f79400;
}

/* Heading */

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:42px;
    font-weight:500;
    color:#2d3748;
    margin-bottom:12px;
}

.underline{
    width:50px;
    height:4px;
    background:#f79400;
    display:block;
}

/* Search */

.search-area{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.search-input{
    flex:1;
    height:58px;
    border:1px solid #d7dce2;
    border-radius:10px;
    padding:0 20px;
    font-size:14px;
    outline:none;
}

.search-btn{
    min-width:260px;
    border:none;
    background:#f79400;
    color:#fff;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.search-btn:hover{
    background:#e88700;
}

/* Table */

.table-responsive{
    overflow-x:auto;
    margin-bottom:50px;
}

.status-table{
    width:100%;
    border-collapse:collapse;
}

.status-table th{
    background:#f7f7f7;
    text-align:left;
    padding:18px;
    border:1px solid #ddd;
    font-weight:100;
}

.status-table td{
    padding:18px;
    border:1px solid #ddd;
}

/* Details Grid */

.details-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.detail-box{
    border:1px solid #d7dce2;
    border-radius:10px;
    padding:15px;
    min-height:85px;
}

.detail-box label{
    display:block;
    color:#8a8a8a;
    font-size:16px;
    margin-bottom:6px;
}

.detail-box span{
    display:block;
    color:#8a8a8a;
    font-size:18px;
    font-weight:200;
}

/* Tablet */

@media(max-width:1024px){

    .section-heading h2{
        font-size:34px;
    }

    .details-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:767px){

    .search-area{
        flex-direction:column;
    }

    .search-btn{
        width:100%;
        min-width:100%;
        height:58px;
    }

    .details-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:28px;
    }

    .status-table{
        min-width:900px;
    }

    .language-switch{
        justify-content:center;
    }

}/* End custom CSS */