
.header[data-v-5706a6bf] {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: var(--header-height, 80px);
    background: linear-gradient(135deg, #775928, #b08d57);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0px 4px 12px rgba(119, 89, 40, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    gap: 24px;
}
.header-left[data-v-5706a6bf] {
    flex-shrink: 0;
    width: var(--sidebar-width, 288px);
    padding-right: 24px;
    transition: width 0.3s ease, padding-right 0.3s ease;
}
.header-left.sidebar-collapsed[data-v-5706a6bf] {
    width: auto;
    padding-right: 0;
}
.header-logo img[data-v-5706a6bf] {
    max-height: 48px;
    width: auto;
}
.mobile_btn[data-v-5706a6bf] {
    display: none;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 12px;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 150ms ease;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.mobile_btn[data-v-5706a6bf]:hover {
    background: rgba(255, 255, 255, 0.15);
}
.header-search[data-v-5706a6bf] {
    flex: 1;
    max-width: 480px;
    position: relative;
}
.search-icon[data-v-5706a6bf] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    z-index: 1;
    pointer-events: none;
}
.search-input[data-v-5706a6bf] {
    width: 100%;
    padding: 10px 40px 10px 44px;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: all 150ms ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}
.search-input[data-v-5706a6bf]:focus {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.2);
}
.search-input[data-v-5706a6bf]::-moz-placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.search-input[data-v-5706a6bf]::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.search-clear[data-v-5706a6bf] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 150ms ease;
}
.search-clear[data-v-5706a6bf]:hover {
    color: #ffffff;
}
.search-clear .material-symbols-outlined[data-v-5706a6bf] {
    font-size: 18px;
}
.search-dropdown[data-v-5706a6bf] {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--color-bg-card, #ffffff);
    border-radius: 12px;
    box-shadow: 0px 12px 32px rgba(52, 48, 43, 0.12);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1100;
    padding: 8px 0;
}
.search-loading[data-v-5706a6bf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    color: var(--color-text-muted, #807569);
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
}
.search-spinner[data-v-5706a6bf] {
    animation: spin-5706a6bf 1s linear infinite;
}
@keyframes spin-5706a6bf {
from { transform: rotate(0deg);
}
to { transform: rotate(360deg);
}
}
.search-empty[data-v-5706a6bf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    color: var(--color-text-muted, #807569);
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    text-align: center;
}
.search-empty .material-symbols-outlined[data-v-5706a6bf] {
    font-size: 32px;
    opacity: 0.5;
}
.search-category[data-v-5706a6bf] {
    padding: 4px 0;
}
.search-category-header[data-v-5706a6bf] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted, #807569);
}
.search-category-header .material-symbols-outlined[data-v-5706a6bf] {
    font-size: 14px;
}
.search-result-item[data-v-5706a6bf] {
    display: flex;
    flex-direction: column;
    padding: 8px 14px;
    text-decoration: none;
    transition: background 150ms ease;
    border-left: 3px solid transparent;
}
.search-result-item[data-v-5706a6bf]:hover,
.search-result-item.active[data-v-5706a6bf] {
    background: rgba(119, 89, 40, 0.06);
    border-left-color: var(--color-primary, #775928);
}
.result-name[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-primary, #1e1b17);
    line-height: 1.3;
}
.result-sub[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: var(--color-text-muted, #807569);
    line-height: 1.3;
}
.header-right[data-v-5706a6bf] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}
.header-icon-btn[data-v-5706a6bf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: all 150ms ease;
}
.header-icon-btn[data-v-5706a6bf]:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.header-icon-btn .material-symbols-outlined[data-v-5706a6bf] {
    font-size: 22px;
}
.header-profile[data-v-5706a6bf] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 150ms ease;
    position: relative;
}
.header-profile[data-v-5706a6bf]:hover {
    background: rgba(255, 255, 255, 0.15);
}
.profile-avatar[data-v-5706a6bf] {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: #ffffff;
    color: #775928;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    flex-shrink: 0;
}
.profile-info[data-v-5706a6bf] {
    display: flex;
    flex-direction: column;
}
.profile-name[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
}
.profile-role[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
}
.profile-arrow[data-v-5706a6bf] {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
}
.profile-dropdown[data-v-5706a6bf] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: var(--color-bg-card, #ffffff);
    border-radius: 12px;
    box-shadow: 0px 12px 32px rgba(52, 48, 43, 0.12);
    padding: 8px;
    z-index: 1100;
}
.dropdown-user-info[data-v-5706a6bf] {
    padding: 8px 14px 4px;
    display: flex;
    flex-direction: column;
}
.dropdown-user-name[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-primary, #1e1b17);
}
.dropdown-user-role[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: var(--color-text-muted, #807569);
}
.dropdown-divider[data-v-5706a6bf] {
    height: 1px;
    background: var(--color-outline-variant, #d1c5b6);
    margin: 6px 8px;
}
.profile-dropdown .dropdown-item[data-v-5706a6bf] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--color-text-primary, #1e1b17);
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 150ms ease;
}
.profile-dropdown .dropdown-item[data-v-5706a6bf]:hover {
    background: rgba(119, 89, 40, 0.06);
    color: var(--color-primary, #775928);
}
.profile-dropdown .dropdown-item .material-symbols-outlined[data-v-5706a6bf] {
    font-size: 18px;
}
.dropdown-version[data-v-5706a6bf] {
    padding: 8px 14px 4px;
    color: var(--color-text-muted, #807569);
    font-family: 'Manrope', sans-serif;
    font-size: 0.6875rem;
}
@media (max-width: 768px) {
.header[data-v-5706a6bf] {
        padding: 0 12px;
        height: 60px;
        gap: 8px;
}
.header-left[data-v-5706a6bf] {
        width: auto;
        padding-right: 0;
        flex-shrink: 0;
}
.mobile_btn[data-v-5706a6bf] {
        display: flex;
}
.header-logo[data-v-5706a6bf] {
        margin-left: 4px;
}
.header-logo img[data-v-5706a6bf] {
        max-height: 36px;
}
.header-search[data-v-5706a6bf] {
        display: none;
        max-width: none;
        flex: 1;
}
.header-search.mobile-search-open[data-v-5706a6bf] {
        display: block;
}
.header-profile[data-v-5706a6bf] {
        padding: 4px;
}
.profile-dropdown[data-v-5706a6bf] {
        position: fixed;
        top: 60px;
        right: 8px;
        left: 8px;
        min-width: auto;
}
}
.notification-wrapper[data-v-5706a6bf] {
    position: relative;
}
.notification-badge[data-v-5706a6bf] {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ac3231;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-family: 'Manrope', sans-serif;
}
.notification-dropdown[data-v-5706a6bf] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-height: 480px;
    background: var(--color-bg-card, #ffffff);
    border-radius: 12px;
    box-shadow: 0px 12px 32px rgba(52, 48, 43, 0.12);
    z-index: 1100;
    overflow: hidden;
}
.notification-header[data-v-5706a6bf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-outline-variant, #d1c5b6);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-primary, #1e1b17);
}
.mark-all-read[data-v-5706a6bf] {
    background: none;
    border: none;
    color: var(--color-primary, #775928);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
}
.mark-all-read[data-v-5706a6bf]:hover {
    text-decoration: underline;
}
.notification-list[data-v-5706a6bf] {
    max-height: 400px;
    overflow-y: auto;
}
.notification-item[data-v-5706a6bf] {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 150ms ease;
    border-bottom: 1px solid var(--color-outline-variant, #d1c5b6);
}
.notification-item[data-v-5706a6bf]:last-child {
    border-bottom: none;
}
.notification-item[data-v-5706a6bf]:hover {
    background: rgba(119, 89, 40, 0.04);
}
.notification-item.unread[data-v-5706a6bf] {
    background: rgba(119, 89, 40, 0.06);
}
.notification-icon[data-v-5706a6bf] {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--color-surface-container-low, #fbf2eb);
}
.notification-icon.payment_received[data-v-5706a6bf] {
    background: rgba(60, 105, 43, 0.1);
    color: #3c692b;
}
.notification-icon .material-symbols-outlined[data-v-5706a6bf] {
    font-size: 20px;
}
.notification-content[data-v-5706a6bf] {
    flex: 1;
    min-width: 0;
}
.notification-title[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--color-text-primary, #1e1b17);
    margin-bottom: 2px;
}
.notification-message[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: var(--color-text-secondary, #4e453a);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notification-time[data-v-5706a6bf] {
    font-family: 'Manrope', sans-serif;
    font-size: 0.6875rem;
    color: var(--color-text-muted, #807569);
    margin-top: 4px;
}
.notification-empty[data-v-5706a6bf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 16px;
    color: var(--color-text-muted, #807569);
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
}
.notification-empty .material-symbols-outlined[data-v-5706a6bf] {
    font-size: 32px;
    opacity: 0.5;
}
.header-icon-btn.active[data-v-5706a6bf] {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-menu[data-v-b64eec4f] {
    flex: 1 1 auto;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-height: 0;
    height: 100%;
}
.sidebar-menu .nav.flex-column[data-v-b64eec4f] {
    grid-row: 2;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 12px 0;
}
.sidebar-logo-container[data-v-b64eec4f] {
    grid-row: 1;
    padding: 24px 20px;
    text-align: center;
}
.sidebar-logo[data-v-b64eec4f] {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    margin: 0 auto;
}
.logo-error-fallback[data-v-b64eec4f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--color-text-muted, #807569);
    font-size: 12px;
}
.logo-error-fallback .material-symbols-outlined[data-v-b64eec4f] {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--color-outline, #807569);
}
.sidebar-cta[data-v-b64eec4f] {
    grid-row: 3;
    padding: 0 16px 16px;
}
.cta-button[data-v-b64eec4f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--color-primary, #775928), var(--color-primary-light, #b08d57));
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 150ms ease;
    box-shadow: 0px 4px 12px rgba(119, 89, 40, 0.25);
}
.cta-button[data-v-b64eec4f]:hover {
    transform: translateY(-1px);
    box-shadow: 0px 6px 16px rgba(119, 89, 40, 0.35);
    color: #fff;
}
.cta-button .material-symbols-outlined[data-v-b64eec4f] {
    font-size: 20px;
}
@media (max-width: 768px) {
.sidebar-logo-container[data-v-b64eec4f] {
        padding: 16px 12px;
}
.sidebar-logo[data-v-b64eec4f] {
        max-height: 80px;
}
.sidebar-menu li a[data-v-b64eec4f] {
        min-height: 48px;
        display: flex;
        align-items: center;
}
}
@media (max-width: 480px) {
.sidebar-logo-container[data-v-b64eec4f] {
        padding: 12px 8px;
}
.sidebar-logo[data-v-b64eec4f] {
        max-height: 64px;
}
}
@media (min-width: 1200px) {
.sidebar-logo[data-v-b64eec4f] {
        max-height: 120px;
}
}

.fab-container[data-v-66c15deb] {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}
.fab-overlay[data-v-66c15deb] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}
.fab-button[data-v-66c15deb] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary, #bc8540);
    border: none;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(188, 133, 64, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.fab-button[data-v-66c15deb]:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(188, 133, 64, 0.5);
}
.fab-button[data-v-66c15deb]:active {
    transform: scale(0.95);
}
.fab-button i[data-v-66c15deb] {
    transition: transform 0.3s ease;
}
.fab-button:active i[data-v-66c15deb] {
    transform: rotate(90deg);
}
.fab-menu[data-v-66c15deb] {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    margin-bottom: 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.fab-menu.fab-menu-open[data-v-66c15deb] {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}
.fab-menu-item[data-v-66c15deb] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px 16px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--color-dark, #333);
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 44px;
}
.fab-menu-item[data-v-66c15deb]:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.fab-menu-item[data-v-66c15deb]:active {
    transform: scale(0.95);
}
.fab-menu-icon[data-v-66c15deb] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(188, 133, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #bc8540);
    font-size: 16px;
}
.fab-menu-label[data-v-66c15deb] {
    white-space: nowrap;
}
@media (min-width: 769px) {
.fab-container[data-v-66c15deb] {
        display: none !important;
}
}

.toast-notification[data-v-9538b5e1] {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    min-width: 320px;
    max-width: 500px;
    padding: 14px 16px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(52, 48, 43, 0.15);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
}
.toast-icon-wrapper[data-v-9538b5e1] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}
.toast-icon[data-v-9538b5e1] {
    font-size: 1.25rem;
    font-weight: 600;
}
.toast-content[data-v-9538b5e1] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.toast-message[data-v-9538b5e1] {
    flex: 1;
    word-break: break-word;
    line-height: 1.5;
}
.toast-close[data-v-9538b5e1] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-close[data-v-9538b5e1]:hover {
    opacity: 1;
}
.toast-close[data-v-9538b5e1]:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
.toast-close[data-v-9538b5e1]:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Success Toast - Green */
.toast-success[data-v-9538b5e1] {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}
.toast-icon-success[data-v-9538b5e1] {
    background: #dcfce7;
    color: #16a34a;
}
.toast-close-success[data-v-9538b5e1] {
    color: #166534;
}
.toast-close-success[data-v-9538b5e1]:hover {
    background: rgba(22, 101, 52, 0.1);
}

/* Error Toast - Red */
.toast-error[data-v-9538b5e1] {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}
.toast-icon-error[data-v-9538b5e1] {
    background: #fee2e2;
    color: #dc2626;
}
.toast-close-error[data-v-9538b5e1] {
    color: #991b1b;
}
.toast-close-error[data-v-9538b5e1]:hover {
    background: rgba(153, 27, 27, 0.1);
}

/* Warning Toast - Amber */
.toast-warning[data-v-9538b5e1] {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
}
.toast-icon-warning[data-v-9538b5e1] {
    background: #fef3c7;
    color: #d97706;
}
.toast-close-warning[data-v-9538b5e1] {
    color: #92400e;
}
.toast-close-warning[data-v-9538b5e1]:hover {
    background: rgba(146, 64, 14, 0.1);
}

/* Info Toast - Blue */
.toast-info[data-v-9538b5e1] {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}
.toast-icon-info[data-v-9538b5e1] {
    background: #dbeafe;
    color: #2563eb;
}
.toast-close-info[data-v-9538b5e1] {
    color: #1e40af;
}
.toast-close-info[data-v-9538b5e1]:hover {
    background: rgba(30, 64, 175, 0.1);
}

/* Transitions */
.toast-slide-enter-active[data-v-9538b5e1],
.toast-slide-leave-active[data-v-9538b5e1] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast-slide-enter-from[data-v-9538b5e1] {
    opacity: 0;
    transform: translateX(100%);
}
.toast-slide-leave-to[data-v-9538b5e1] {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
}

/* Mobile Responsive */
@media (max-width: 768px) {
.toast-notification[data-v-9538b5e1] {
        left: 12px;
        right: 12px;
        top: 12px;
        min-width: auto;
        max-width: none;
}
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
.toast-slide-enter-active[data-v-9538b5e1],
    .toast-slide-leave-active[data-v-9538b5e1] {
        transition: opacity 0.2s ease;
}
.toast-slide-enter-from[data-v-9538b5e1],
    .toast-slide-leave-to[data-v-9538b5e1] {
        transform: none;
}
}

/* App layout specific styles */
.main-wrapper[data-v-da6f32e3] {
    min-height: 100vh;
    background: var(--color-bg-primary);
}

/* Mobile overlay for sidebar */
.mobile-overlay[data-v-da6f32e3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    cursor: pointer;
}

/* Content area padding */
.page-wrapper[data-v-da6f32e3],
.page-wrapper-no-sidebar[data-v-da6f32e3] {
    box-sizing: border-box;
}

/* Ensure proper content flow */
.router-view-container[data-v-da6f32e3] {
    width: 100%;
}
