/* === BACKGROUND === */
#mainmenu li.has-child .sb-menu .menu-content {
    padding: 45px 45px;
    background: #37287A !important;
    border-radius: 0 0 10px 10px;
}

/* === TITLES === */
#mainmenu li.has-child .menu-content ul li.title {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#mainmenu li.has-child .menu-content ul li.title i {
    font-size: 17px;
    margin-right: 10px;
    opacity: 0.85;
}

/* === LINKS === */
#mainmenu li.has-child .menu-content ul li a {
    color: #CFCFCF;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    transition: all .25s ease;
}

/* Arrow */
#mainmenu li.has-child .menu-content ul li a span {
    margin-right: 10px;
    font-size: 14px;
    opacity: .55;
    transition: all .25s ease;
}

/* Hover */
#mainmenu li.has-child .menu-content ul li:not(.title) a:hover {
    color: #60B7FF !important;
    transform: translateX(4px);
}

#mainmenu li.has-child .menu-content ul li:not(.title) a:hover span {
    opacity: 1;
    color: #60B7FF;
}

/* === SPACING === */
#mainmenu li.has-child .menu-content ul {
    margin: 0 0 30px 0;
    padding: 0;
}

#mainmenu li.has-child .menu-content ul:last-child {
    margin-bottom: 0;
}

/* Custom CSS for the Banner Section */

/* Define the deep purple background */
.physician-banner-section {
    background-color: #3b0066;
    /* Deep purple/indigo similar to image */
    padding-bottom: 100px !important;
    /* Extra padding for bottom content alignment */
}

/* Custom magenta color for buttons and boxes */
.btn-magenta {
    background-color: #c70094;
    /* Vibrant magenta */
    border-color: #c70094;
    color: white;
}

.btn-magenta:hover {
    background-color: #a30079;
    border-color: #a30079;
    color: white;
}

/* Style for the statistics boxes */
.stat-box {
    background-color: #3cb4ce;
    /* Vibrant magenta */
    color: white;
    width: 200px;
    /* Fixed width for square-like appearance */
    height: 150px;
    /* Fixed height for square-like appearance */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Make the stat box h2 text larger and white */
.stat-box h2 {
    font-size: 2.5rem;
}

.stat-box p {
    font-size: 0.875rem;
    /* Smaller text for descriptions */
}


/* Styling for the data table */
.data-table-container table {
    background-color: transparent;
    border: 1px solid #7c4d9a;
    /* Light border color for the overall table area */
    max-width: 450px;
    /* Limit width to match the image */
}

.data-table-container td {
    border-bottom: 1px solid #7c4d9a;
    border-left: 1px solid #7c4d9a;
    /* Separator for rows */
    padding: 0.75rem;
}

/* Highlight the first column cell (National/International) */


.data-table-container tr:last-child td {
    border-bottom: none;
    /* Remove bottom border from last row */
}

.bg-gradient-purple {
    background: linear-gradient(90deg, #5a0fc8 0%, #3a0078 100%);
}

.btn-gradient {
    background: linear-gradient(90deg, #ff3131, #9f00ff);
    color: #fff !important;
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: #fff !important;
}

.btn-gradient {
    background: linear-gradient(90deg, #ff3131, #9f00ff);
    color: #fff !important;
    border: none;
    border-radius: 6px;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: #fff !important;
}

table.table td {
    padding: 15px 10px;
    font-weight: 500;
    color: #000;
    background-color: #f8f9fa;
}

table.table td:hover {
    background-color: #ececec;
}