.nav-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    border: none;
    background-color: #4992A8;
    border-radius: 30px;
    padding: 5px;
}

.nav-tabs .nav-link {
    min-width: 150px;
    text-align: center;
    padding: 10px 15px;
    border: none;
    color: #fff;
    background: transparent;
    font-weight: 500;
    border-radius: 30px;
}

.nav-tabs .nav-link.active {
    background-color: #0d47a1 !important;
    color: white;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.tab-content {

    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
}

.table-container {
    overflow-x: auto;
    width: 100%;
}

.table-container table {
    min-width: 800px;
    width: 100%;
    table-layout: auto;
}

.table th,
.table td {
    white-space: nowrap;
    vertical-align: middle;
}

.table td,
.table th {
    padding: 12px;
}

.action-icons a {
    color: #0d47a1;
    font-size: 18px;
    margin-right: 10px;
}

.pagination .page-link {
    color: #0d47a1;
}

@media (max-width: 768px) {
    .table-container {
        font-size: 14px;
    }

    .nav-tabs .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
}

.search-input {
    border-radius: 50px 0 0 50px;
    padding: 10px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #0d6efd;

}

.input-group-text {
    border-radius: 0 50px 50px 0;

}