.hero-gradient {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.accent-gradient {
    background: linear-gradient(90deg, #0ea5e9 0%, #06b6d4 100%);
}

/* Tab Navigation Styles */
.medical-tab {
    border-bottom-color: transparent;
    color: #6b7280;
    transition: all 0.2s ease-in-out;
}

.medical-tab:hover {
    color: #0ea5e9;
    border-bottom-color: #e5e7eb;
}

.medical-tab.active {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
}

/* Tab Panel Styles */
.medical-panel {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.medical-panel.hidden {
    opacity: 0;
    display: none;
}

.medical-panel:not(.hidden) {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox Animation Styles */
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

*:focus,*:focus-visible {
    outline: none !important;
}

svg{
    fill:none
}
@media screen and (max-width: 1000px) {
[role="tablist"]{
    position:relative;
}
[role="tablist"]::after {
    content: "";
    position: absolute;
    top: 0;
    right: -7px;
    width: 6px;
    height: 100%;
    pointer-events: none;
    box-shadow: -6px 0 10px -1px rgba(0, 0, 0, 0.2);
}
}






