/**
 * Professional Navbar - TransMind Web Application
 * Minimalist white top bar with clean design
 */

/* Pre Header Styles - Minimalist White Design */
.pre-header-container {
    background: #ffffff;
    color: #424242;
    font-size: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1003;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pre-header-container.hidden {
    transform: translateY(-100%);
}

.pre-header-content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    max-width: 100%;
    color: #424242;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    row-gap: 4px;
    column-gap: 12px;
    min-width: 0;
}

.pre-header-left, .pre-header-right {
    min-width: 0;
}
.pre-header-left a, .pre-header-right a {
    color: #424242;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.social-link {
    display: flex;
    list-style: none;
    margin: 0;
    color : #424242;
}

.social-link a {
    color: #222 !important;
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    font-size: 1.1rem !important;
    box-shadow: none !important;
    transition: color 0.2s, background 0.2s, border 0.2s;
}

.social-link a:hover {
    color: #4dd0e1 !important;
    background: #222 !important;
    border: 1px solid #4dd0e1 !important;
}

.social-link a i {
    color: inherit !important;
    transition: color 0.2s;
}

/* Sticky Header Wrapper */
.sticky-header-wrapper {
    position: relative;
}

.header-container {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3f51b5 90%, #5c6bc0 100%);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 36px; /* Adjusted for minimalist pre-header height */
    left: 0;
    right: 0;
    z-index: 1002;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(77, 208, 225, 0.3);
    backdrop-filter: blur(10px);
}

.header-container.sticky-active {
    top: 0;
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.25);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    margin: 0 auto;
    min-height: 85px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Logo Section */
.main-header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: var(--font-family-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #4dd0e1;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Main Header Center - Navigation */
.main-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.menu-item {
    position: relative;
}

/* Main Navigation Menu Items - Underline Style */
.menu-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 20px 24px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    position: relative;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4dd0e1, #00bcd4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.menu-link:hover::after,
.menu-item.current-menu-item .menu-link::after {
    width: 80%;
}

.menu-link:hover,
.menu-item.current-menu-item .menu-link {
    color: #ffffff;
    background: transparent;
    border-color: transparent;
    transform: translateY(-2px);
}

.menu-link:hover .menu-title,
.menu-item.current-menu-item .menu-link .menu-title {
    color: #4dd0e1;
}

/* Main Header Right - Contact Button */
.main-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

/* Contact Button Header Styling */
.header-contact-btn {
    display: flex;
    align-items: center;
}

.btn-contact-header {
    background: linear-gradient(45deg, #4dd0e1, #00bcd4);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px; /* Changed from 50px to 8px for rectangular look */
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(77, 208, 225, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.btn-contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
}

.btn-contact-header:hover::before {
    left: 0;
}

.btn-contact-header:hover {
    background: linear-gradient(45deg, #00acc1, #4dd0e1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(77, 208, 225, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.btn-contact-header i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-contact-header:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Contact Button Header Styling - Special Design */
.btn-contact-header-special {
    background: linear-gradient(135deg, #4dd0e1 0%, #00bcd4 50%, #26c6da 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px; /* Changed from 50px to 8px for rectangular look */
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 6px 20px rgba(77,208,225,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    justify-content: center;
}

/* Background Effect */
.btn-bg-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: 1;
}

.btn-contact-header-special:hover .btn-bg-effect {
    left: 100%;
}

/* Button Icon */
.btn-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-icon i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* Button Text */
.btn-text {
    position: relative;
    z-index: 3;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Ripple Effect */
.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 2;
}

/* Hover Effects */
.btn-contact-header-special:hover {
    background: linear-gradient(135deg, #26c6da 0%, #4dd0e1 50%, #00acc1 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 12px 30px rgba(77,208,225,0.6),
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 0 25px rgba(77,208,225,0.3);
    color: #ffffff;
    text-decoration: none;
}

.btn-contact-header-special:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg) scale(1.2);
}

.btn-contact-header-special:hover .btn-icon i {
    transform: scale(1.3);
}

.btn-contact-header-special:hover .btn-ripple {
    width: 200px;
    height: 200px;
}

/* Active/Click Effect */
.btn-contact-header-special:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}

/* Pulse Animation */
@keyframes pulse-glow {
    0% {
        box-shadow:
            0 8px 25px rgba(77, 208, 225, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 8px 25px rgba(77, 208, 225, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 20px rgba(77, 208, 225, 0.2);
    }
    100% {
        box-shadow:
            0 8px 25px rgba(77, 208, 225, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.btn-contact-header-special {
    animation: pulse-glow 3s ease-in-out infinite;
}

.btn-contact-header-special:hover {
    animation: none;
}

/* Body Padding Adjustment */
body {
    padding-top: 121px !important; /* Minimalist pre-header + main header height */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none; /* Remove background */
    border: none; /* Remove border */
    color: #ffffff;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-toggle:hover {
    background: rgba(77, 208, 225, 0.25);
    border-color: rgba(77, 208, 225, 0.5);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-icon span {
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* --- Responsive improvements for dashboard button and navbar --- */
@media (max-width: 991.98px) {
    html, body {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
    }
    body.mobile-menu-open {
        position: fixed;
        width: 100vw;
        height: 100vh;
        overflow: hidden !important;
        touch-action: none;
    }
    .header-container {
        z-index: 2100;
    }
    .primary-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: linear-gradient(135deg, #1a237e, #283593);
        border-top: none;
        border-bottom: 2px solid rgba(77, 208, 225, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
        z-index: 2200;
        backdrop-filter: blur(10px);
        display: flex !important;
        align-items: flex-start;
        justify-content: center;
        padding-top: 110px;
        overflow-y: auto;
        max-width: 100vw;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }
    .primary-navigation.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-menu {
        flex-direction: column;
        padding: 0 0 40px 0;
        gap: 0;
        width: 90vw;
        max-width: 400px;
        margin: 0 auto;
        background: transparent;
        z-index: 2300;
    }
    .menu-item {
        width: 100%;
    }
    .menu-link {
        padding: 18px 20px;
        border-radius: 10px;
        justify-content: flex-start;
        margin-bottom: 5px;
        font-size: 1.1rem;
        width: 100%;
        background: rgba(255,255,255,0.04);
        color: #fff;
        border: none;
        box-shadow: none;
        z-index: 2300;
    }
    .menu-link i {
        min-width: 24px;
        text-align: center;
    }
    .main-header-center {
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        z-index: 2300;
    }
    .main-header-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        z-index: 2300;
    }
    .special-dashboard-btn {
        width: 100%;
        min-width: 0;
        margin: 10px 0 0 0;
        justify-content: center;
        font-size: 1.1rem;
        padding: 14px 0;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(77,208,225,0.18);
    }
    .special-dashboard-btn i {
        font-size: 1.3em;
        margin-right: 8px;
    }
    .dashboard-btn-text {
        font-size: 1.05em;
        font-weight: 600;
    }
    .secondary-menu {
        gap: 10px;
        flex-wrap: wrap;
    }
    .secondary-menu li a {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    /* Menü açıkken sadece menüye tıklanabilsin, arka plan tıklanamaz olsun */
    .primary-navigation.mobile-active ~ *:not(.primary-navigation):not(.mobile-menu-toggle) {
        pointer-events: none !important;
        user-select: none !important;
    }
}
@media (max-width: 768px) {
    .pre-header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 0 6px;
    }
    .pre-header-left, .pre-header-right {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
    }
    .secondary-menu {
        justify-content: flex-start;
        gap: 6px;
    }
    .header-container {
        top: 60px; /* Yükseltilmiş pre-header yüksekliği için */
    }
    body {
        padding-top: 125px !important;
    }
    .header-content {
        min-height: 60px;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 6px;
    }
    .main-header-left, .main-header-right {
        justify-content: flex-start;
    }
    .main-header-right {
        flex-direction: row;
        gap: 8px;
        width: 100%;
    }
    .special-dashboard-btn {
        width: auto;
        min-width: 90px;
        margin-top: 0;
    }
}
@media (max-width: 576px) {
    .pre-header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 0 2px;
    }
    .header-container {
        top: 70px;
    }
    body {
        padding-top: 135px !important;
    }
    .header-content {
        min-height: 50px;
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 0 2px;
    }
    .main-header-right {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        align-items: center;
    }
    .special-dashboard-btn {
        font-size: 0.7rem !important;
        padding: 2px 2px !important;
        border-radius: 6px !important;
        min-width: 0;
        width: 120px;
        max-width: 90vw;
        height: 20px;
        gap: 1px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .special-dashboard-btn i {
        font-size: 0.9em;
        margin-right: 2px;
    }
    .dashboard-btn-text {
        font-size: 0.7em;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-content,
    .pre-header-content {
        padding: 0 15px;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 129px !important;
    }

    .header-content {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        text-align: center;
    }

    /* DÜZELTME: .main-header-center'ı tamamen gizleme! */
    /* .main-header-center {
        display: none;
    } */

    .mobile-menu-toggle {
        display: flex;
    }

    .primary-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a237e, #283593);
        border-top: 2px solid rgba(77, 208, 225, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1001;
        backdrop-filter: blur(10px);
        display: flex !important;
    }

    .primary-navigation.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-menu {
        flex-direction: column;
        padding: 25px;
        gap: 0;
    }

    .menu-item {
        width: 100%;
    }

    .menu-link {
        padding: 18px 20px;
        border-radius: 10px;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .btn-contact-header {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .secondary-menu {
        gap: 10px;
        flex-wrap: wrap;
    }

    .secondary-menu li a {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 115px !important;
    }

    .pre-header-container {
        padding: 6px 0;
    }

    .header-content {
        min-height: 75px;
    }

    .logo-title {
        font-size: 1.4rem;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .pre-header-content {
        flex-wrap: wrap;
        gap: 8px;
    }

    .secondary-menu {
        gap: 8px;
    }

    .secondary-menu li a {
        padding: 2px 6px;
        font-size: 0.65rem;
    }

    .special-dashboard-btn {
        background: linear-gradient(135deg, #4dd0e1 0%, #00bcd4 50%, #26c6da 100%);
        color: #fff !important;
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 18px;
        padding: 12px 28px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
        box-shadow: 0 6px 20px rgba(77,208,225,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        min-width: 140px;
        justify-content: center;
        cursor: pointer;
    }
    .special-dashboard-btn:hover {
        background: linear-gradient(135deg, #26c6da 0%, #4dd0e1 50%, #00acc1 100%);
        border-color: rgba(255,255,255,0.5);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 30px rgba(77,208,225,0.6), inset 0 1px 0 rgba(255,255,255,0.3), 0 0 25px rgba(77,208,225,0.3);
        color: #fff;
        text-decoration: none;
    }
    .special-dashboard-btn i {
        font-size: 1.2em;
        margin-right: 6px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 105px !important;
    }

    .header-content {
        min-height: 65px;
        padding: 0 10px;
    }

    .pre-header-content {
        padding: 0 10px;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .secondary-menu li:not(:first-child):not(:last-child) {
        display: none;
    }

    .social-link {
        gap: 4px !important;
    }

    .social-link li a {
        min-width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .btn-contact-header {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .special-dashboard-btn {
        font-size: 0.7rem !important;
        padding: 2px 2px !important;
        border-radius: 6px !important;
        min-width: 0;
        width: 120px;
        max-width: 90vw;
        height: 20px;
        gap: 1px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .special-dashboard-btn i {
        font-size: 0.9em;
        margin-right: 2px;
    }
    .dashboard-btn-text {
        font-size: 0.7em;
    }
}

/* Print Styles */
@media print {
    .pre-header-container,
    .header-container {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
    }
}

/* Accessibility */
.menu-link:focus,
.mobile-menu-toggle:focus,
.btn-contact-header:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Smooth transitions for better UX */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.special-dashboard-btn {
    background: linear-gradient(135deg, #4dd0e1 0%, #00bcd4 50%, #26c6da 100%);
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s cubic-bezier(0.175,0.885,0.32,1.275);
    box-shadow: 0 2px 8px rgba(77,208,225,0.18), inset 0 1px 0 rgba(255,255,255,0.13);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    text-transform: none;
    letter-spacing: 0.1px;
    min-width: 0;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    height: 32px;
}
.special-dashboard-btn:hover, .special-dashboard-btn:focus {
    background: linear-gradient(135deg, #26c6da 0%, #4dd0e1 50%, #00acc1 100%);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(77,208,225,0.25), 0 0 10px rgba(77,208,225,0.13);
    color: #fff;
    text-decoration: none;
}
.special-dashboard-btn i {
    font-size: 1em;
    margin-right: 3px;
}
.dashboard-btn-text {
    font-size: 0.92em;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .special-dashboard-btn {
        padding: 5px 10px !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
        min-width: 0;
        width: auto;
        height: 28px;
        gap: 4px;
    }
    .dashboard-btn-text {
        font-size: 0.85em;
    }
}
@media (max-width: 768px) {
    .special-dashboard-btn {
        padding: 4px 8px !important;
        font-size: 0.8rem !important;
        border-radius: 8px !important;
        min-width: 0;
        width: auto;
        height: 26px;
        gap: 3px;
    }
    .dashboard-btn-text {
        font-size: 0.8em;
    }
}
@media (max-width: 576px) {
    .special-dashboard-btn {
        font-size: 0.7rem !important;
        padding: 2px 2px !important;
        border-radius: 6px !important;
        min-width: 0;
        width: 120px;
        max-width: 90vw;
        height: 20px;
        gap: 1px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .main-header-right {
        align-items: center;
    }
    .special-dashboard-btn i {
        font-size: 0.9em;
        margin-right: 2px;
    }
    .dashboard-btn-text {
        font-size: 0.7em;
    }
}
