/* _content/WABAPI/Components/Layout/MainLayout.razor.rz.scp.css */
/* Ana sayfa yapısı */
.page[b-4ktsqobhw8] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

main[b-4ktsqobhw8] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Sidebar */
.sidebar[b-4ktsqobhw8] {
    background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    position: relative;
}

.sidebar[b-4ktsqobhw8]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.4), transparent);
}

/* Top bar */
.top-row[b-4ktsqobhw8] {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 1.5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle[b-4ktsqobhw8] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.mobile-menu-toggle:hover[b-4ktsqobhw8] {
    background-color: #f3f4f6;
}

.user-section[b-4ktsqobhw8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.user-dropdown-btn[b-4ktsqobhw8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.user-dropdown-btn:hover[b-4ktsqobhw8] {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.user-dropdown-btn i[b-4ktsqobhw8] {
    font-size: 1.25rem;
}

.user-name[b-4ktsqobhw8] {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Dropdown menu */
.dropdown-menu[b-4ktsqobhw8] {
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item[b-4ktsqobhw8] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.dropdown-item i[b-4ktsqobhw8] {
    font-size: 1rem;
    width: 1rem;
}

.dropdown-item:hover[b-4ktsqobhw8] {
    background-color: #f3f4f6;
}

/* Content area */
.content[b-4ktsqobhw8] {
    padding: 2rem;
    flex: 1;
    width: 100%;
}

/* Error UI */
#blazor-error-ui[b-4ktsqobhw8] {
    background: #fee2e2;
    border-top: 3px solid #dc2626;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.error-content[b-4ktsqobhw8] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #991b1b;
    font-size: 0.875rem;
}

.error-content i[b-4ktsqobhw8] {
    font-size: 1.25rem;
}

.error-content .reload[b-4ktsqobhw8] {
    color: #dc2626;
    font-weight: 600;
    text-decoration: underline;
    margin-left: auto;
}

.error-content .dismiss[b-4ktsqobhw8] {
    background: none;
    border: none;
    color: #991b1b;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content .dismiss:hover[b-4ktsqobhw8] {
    color: #7f1d1d;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle[b-4ktsqobhw8] {
        display: block;
    }

    .top-row[b-4ktsqobhw8] {
        padding: 0 1rem;
        height: 3.5rem;
    }

    .user-name[b-4ktsqobhw8] {
        display: none;
    }

    .user-dropdown-btn[b-4ktsqobhw8] {
        padding: 0.5rem;
    }

    .content[b-4ktsqobhw8] {
        padding: 1rem;
    }

    .btn-sm[b-4ktsqobhw8] {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
}

/* Desktop layout */
@media (min-width: 769px) {
    .page[b-4ktsqobhw8] {
        flex-direction: row;
    }

    .sidebar[b-4ktsqobhw8] {
        width: 280px;
        min-height: 100vh;
        position: sticky;
        top: 0;
        max-height: 100vh;
        overflow-y: auto;
    }

    main[b-4ktsqobhw8] {
        flex: 1;
        width: calc(100% - 280px);
    }

    .top-row[b-4ktsqobhw8] {
        position: sticky;
        top: 0;
    }
}

@media (min-width: 1024px) {
    .content[b-4ktsqobhw8] {
        padding: 2.5rem;
    }
}
/* _content/WABAPI/Components/Layout/NavMenu.razor.rz.scp.css */
/* Nav header */
.nav-header[b-7n6w7x72xg] {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    position: relative;
}

.nav-header[b-7n6w7x72xg]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 156, 249, 0.6), transparent);
}

.logo[b-7n6w7x72xg] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo i[b-7n6w7x72xg] {
    font-size: 2rem;
    color: #25d366;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.4));
}

/* Mobile toggle */
.navbar-toggler[b-7n6w7x72xg] {
    display: none;
    appearance: none;
}

/* Nav scrollable area */
.nav-scrollable[b-7n6w7x72xg] {
    height: calc(100vh - 5rem);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar - hidden */
.nav-scrollable[b-7n6w7x72xg]::-webkit-scrollbar {
    width: 0px;
    display: none;
}

.nav-scrollable[b-7n6w7x72xg] {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Nav menu */
.nav-menu[b-7n6w7x72xg] {
    padding: 1rem 0;
}

/* Nav sections */
.nav-section[b-7n6w7x72xg] {
    padding: 0.75rem 0;
}

.nav-section:not(:last-child)[b-7n6w7x72xg] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
}

.nav-section-title[b-7n6w7x72xg] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-section-title[b-7n6w7x72xg]::before {
    content: '';
    width: 3px;
    height: 12px;
    background: linear-gradient(180deg, #60a5fa, #818cf8);
    border-radius: 2px;
    margin-right: 0.5rem;
}

/* Nav items */
.nav-item[b-7n6w7x72xg] {
    padding: 0.125rem 0.75rem;
    position: relative;
}

.nav-form[b-7n6w7x72xg] {
    margin: 0;
    padding: 0;
}

.nav-link[b-7n6w7x72xg] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
    font-weight: 500;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.nav-link:hover[b-7n6w7x72xg] {
    text-decoration: none;
}

.nav-link:focus[b-7n6w7x72xg] {
    text-decoration: none;
    outline: none;
}

.nav-link:visited[b-7n6w7x72xg] {
    text-decoration: none;
}

.nav-link[b-7n6w7x72xg]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #60a5fa, #818cf8);
    transform: translateX(-3px);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.nav-link i[b-7n6w7x72xg] {
    font-size: 1.25rem;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
}

.nav-link span[b-7n6w7x72xg] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: lightblue;
}

.nav-link:hover[b-7n6w7x72xg] {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(129, 140, 248, 0.15));
    color: white;
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
    border-left: 3px solid #60a5fa;
}

.nav-link:hover[b-7n6w7x72xg]::before {
    transform: translateX(0);
    background: linear-gradient(180deg, #60a5fa, #818cf8);
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
}

.nav-link:hover i[b-7n6w7x72xg] {
    background: linear-gradient(135deg, #60a5fa, #818cf8);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.nav-link:hover span[b-7n6w7x72xg] {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.3);
}

.nav-link.active[b-7n6w7x72xg] {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(129, 140, 248, 0.2));
    color: white;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4);
}

.nav-link.active[b-7n6w7x72xg]::before {
    transform: translateX(0);
}

.nav-link.active i[b-7n6w7x72xg] {
    background: linear-gradient(135deg, #60a5fa, #818cf8);
    color: white;
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.5);
}

.logout-btn[b-7n6w7x72xg] {
    color: #ffffff;
    text-decoration: none;
}

.logout-btn:hover[b-7n6w7x72xg] {
    text-decoration: none;
}

.logout-btn:focus[b-7n6w7x72xg] {
    text-decoration: none;
    outline: none;
}

.logout-btn:visited[b-7n6w7x72xg] {
    text-decoration: none;
}

.logout-btn:hover[b-7n6w7x72xg] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    color: #fca5a5;
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    border-left: 3px solid #ef4444;
}

.logout-btn:hover i[b-7n6w7x72xg] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

/* Message badge */
.message-badge[b-7n6w7x72xg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-left: auto;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
    animation: pulse-b-7n6w7x72xg 2s infinite;
}

@keyframes pulse-b-7n6w7x72xg {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.7);
    }
}

/* Mobile only items */
.mobile-only[b-7n6w7x72xg] {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-header[b-7n6w7x72xg] {
        padding: 1rem;
    }

    .logo[b-7n6w7x72xg] {
        font-size: 1.25rem;
    }

    .logo i[b-7n6w7x72xg] {
        font-size: 1.5rem;
    }

    .mobile-only[b-7n6w7x72xg] {
        display: block;
    }

    .nav-scrollable[b-7n6w7x72xg] {
        display: none;
        position: fixed;
        top: 3.5rem;
        left: 0;
        width: 280px;
        height: calc(100vh - 3.5rem);
        background-color: #3b4557;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 200;
        animation: slideIn-b-7n6w7x72xg 0.3s ease;
    }

    @keyframes slideIn-b-7n6w7x72xg {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-7n6w7x72xg] {
        display: block;
    }

    .nav-section:not(:last-child)[b-7n6w7x72xg] {
        padding-bottom: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .nav-item[b-7n6w7x72xg] {
        padding: 0.0625rem 0.625rem;
    }

    .nav-link[b-7n6w7x72xg] {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }

    .nav-link i[b-7n6w7x72xg] {
        font-size: 1.125rem;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .nav-scrollable[b-7n6w7x72xg] {
        display: block !important;
    }

    .nav-header[b-7n6w7x72xg] {
        position: sticky;
        top: 0;
        background-color: #3b4557;
        z-index: 10;
    }
}

/* Large desktop */
@media (min-width: 1024px) {
    .nav-link[b-7n6w7x72xg] {
        padding: 0.875rem 0.875rem;
        font-size: 0.9375rem;
    }

    .nav-section-title[b-7n6w7x72xg] {
        font-size: 0.8125rem;
    }
}
