.input-group button {
    padding: 10px;
    height: auto;
    max-height: 44px;
    border: 1px solid var(--Light-Blue, #7BAAB7);
    border-left: 0;
    background: #F1F9FB;
    color: #7BAAB7;
    border-radius: 6px;
}

.input-group button:hover {
    background-color: var(--heading-color)
}
.input-group input {
    border-right: 0;
}

.form-control {
    background: #F1F9FB;
    border-radius: 6px;
    border: 1px solid var(--Light-Blue, #7BAAB7);
    margin-bottom: 34px;
    color: #7BAAB7;
    height: 44px;
}

/* Career Menu Styles */
.navbar .career-menu {
    position: static;
}

.career-menu .dropdown-menu {
    width: 250px;
    padding: 5px;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 0 0 4px 4px;
    background: #fff !important;
    padding: 0.5rem;
    display: none;
}

.career-menu .dropdown:hover > .dropdown-menu {
    display: block;
}

.career-menu .dropdown-submenu {
    position: relative;
}

.career-menu .dropdown-submenu > .dropdown-menu {
    top: 0px !important;
    left: 100%;
    margin-top: -0.5rem;
    display: none;
}

.career-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.career-menu .dropdown-item {
    padding: 0.5rem 1rem;
    color: #333;
    border-radius: 4px;
}

.career-menu .dropdown-submenu > .dropdown-item:after {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    content: '›';
    font-size: 1.2em;
}

.career-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0077AB;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .career-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1.5rem;
    }
    
    .career-menu .dropdown-submenu > .dropdown-menu {
        display: none;
    }
    
    .career-menu .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }
}

/* Cluster Page Styles */
.cluster-details {
    padding: 60px 0;
}

.cluster-details .breadcrumb {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.cluster-details h1 {
    color: #333;
    font-size: 2.5rem;
}

.cluster-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cluster-details .card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.cluster-details .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.cluster-details .card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.cluster-details .table th {
    font-weight: 600;
    background: #f8f9fa;
}

.cluster-details .btn-dark {
    padding: 0.5rem 1rem;
}

/* Career Details Page Styles */
.career-details {
    padding: 60px 0;
}

.career-details .breadcrumb {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.career-details h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.career-details .card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.career-details .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.career-details .card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.career-details .card-body {
    color: #666;
    line-height: 1.6;
    padding: 2rem;
}

.career-details .table th {
    font-weight: 600;
    background: #f8f9fa;
}

.career-details .btn-dark {
    padding: 0.5rem 1rem;
}

.career-details img {
    max-width: 100%;
    height: auto;
}

.career-details .table-responsive {
    margin-top: 1rem;
}

/* Package Tests Styling */
.test-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.test-list li {
    padding: 2px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 15px;
}

.test-list li:last-child {
    border-bottom: none;
}

.test-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.test-list-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
}

.test-list-mobile li {
    padding: 3px 0;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 18px;
}

.test-list-mobile li:last-child {
    border-bottom: none;
}

.test-list-mobile li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 3px;
}

.included-tests h6 {
    color: #495057;
    font-weight: 600;
}

/* Our Plans table styling for tests */
.our-plan .table td .test-list li {
    font-size: 13px;
    padding: 1px 0;
}

.our-plan .table td .test-list li:before {
    font-size: 12px;
}