/* Güzellik Merkezi - Modern CSS Stilleri */

:root {
    --primary-color: #475569;
    --primary-dark: #334155;
    --primary-light: #64748b;
    --secondary-color: #f8fafc;
    --success-color: #059669;
    --danger-color: #dc2626;
    --warning-color: #d97706;
    --info-color: #0284c7;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Sidebar Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 25%, #f1f5f9 50%, #e2e8f0 75%, #cbd5e1 100%);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        4px 0 25px rgba(0, 0, 0, 0.1),
        inset -1px 0 0 rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(20px);
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(71, 85, 105, 0.02) 100%);
    pointer-events: none;
}

.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(71, 85, 105, 0.3) 0%, rgba(71, 85, 105, 0.5) 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(71, 85, 105, 0.5) 0%, rgba(71, 85, 105, 0.7) 100%);
    transform: scaleX(1.2);
}

.main-content {
    flex: 1;
    margin-left: 280px;
    background: #f8fafc;
    min-height: 100vh;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sidebar Header */
.sidebar-header {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8E2DE2 100%);
    position: relative;
    overflow: hidden;
    border-bottom: none;
    margin-bottom: 1rem;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    pointer-events: none;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: logoGlow 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 0.6; transform: scale(1.2) rotate(180deg); }
}

.sidebar-brand {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    flex-direction: row;
    text-align: left;
}

.sidebar-brand:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.4);
}

.brand-icon-container {
    position: relative;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-brand .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #667eea;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.sidebar-brand .brand-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #fff, #667eea, #764ba2, #8E2DE2);
    border-radius: 50%;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sidebar-brand:hover .brand-icon {
    transform: scale(1.1) rotateY(20deg);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.4);
    color: #8E2DE2;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.1px;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    margin-top: 0.05rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}



@keyframes textShimmer {
    0%, 100% { 
        background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50% { 
        background: linear-gradient(135deg, #f8f9ff 0%, #e0e7ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* Enhanced Logo Hover Effects */
.sidebar-brand:hover {
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(-6px); }
}

.sidebar-brand:hover .brand-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1.1) rotateY(20deg);
        filter: brightness(1.1);
    }
    50% { 
        transform: scale(1.15) rotateY(20deg);
        filter: brightness(1.3);
    }
}

.sidebar-brand:hover .brand-title {
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

/* Particle Effect for Logo */
.sidebar-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: logoGlow 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
}

/* Premium Shimmer Effect for Brand Icon */
.sidebar-brand .brand-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shimmer 2.5s infinite;
    border-radius: 50%;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Logo Loading Animation on Page Load */
.sidebar-brand {
    animation: logoEntrance 1.2s ease-out;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sidebar-brand .brand-icon {
    animation: iconEntrance 1.5s ease-out 0.3s both;
}

@keyframes iconEntrance {
    0% {
        opacity: 0;
        transform: rotateY(-90deg) scale(0.5);
    }
    50% {
        opacity: 0.7;
        transform: rotateY(20deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

.brand-text {
    animation: textEntrance 1.8s ease-out 0.6s both;
}

@keyframes textEntrance {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.sidebar-brand:hover + * .sidebar-header::after,
.sidebar-header:hover::after {
    animation: logoGlowIntense 2s ease-in-out infinite;
}

@keyframes logoGlowIntense {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(0.8) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.4) rotate(180deg); 
    }
}

/* Settings Page Styles */
.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #64748b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 
        0 8px 32px rgba(71, 85, 105, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.user-avatar-large:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(71, 85, 105, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.profile-stats {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-item small {
    color: var(--gray-500);
    font-weight: 500;
}

.card-header-tabs .nav-link {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    color: var(--gray-600);
    font-weight: 500;
}

.card-header-tabs .nav-link:hover {
    background: rgba(71, 85, 105, 0.05);
    color: var(--primary-color);
}

.card-header-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #64748b 100%);
    color: white;
    border: none;
}

.security-info {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
}

.security-info h6 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.security-info ul li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.form-text {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Settings specific responsive */
@media (max-width: 768px) {
    .user-avatar-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .profile-stats {
        padding: 1rem;
    }
    
    .card-header-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 1rem 0;
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section:first-child .nav-section-title {
    margin-top: 0.5rem;
}

.nav-section-title {
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.75rem 1.5rem;
    margin: 1.5rem 0 1rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(71, 85, 105, 0.08) 100%);
    border-radius: 0 10px 10px 0;
    position: relative;
    border-left: 3px solid var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(71, 85, 105, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.nav-section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(71, 85, 105, 0.3) 100%);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
}

.nav-section:hover .nav-section-title {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(71, 85, 105, 0.1) 100%);
    transform: translateX(2px);
    box-shadow: 
        0 3px 12px rgba(71, 85, 105, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-item {
    margin-bottom: 0.2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 3px solid transparent;
    border-radius: 0 12px 12px 0;
    margin: 0.125rem 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 85, 105, 0.05), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(71, 85, 105, 0.08) 100%);
    border-left-color: var(--primary-color);
    transform: translateX(3px) scale(1.02);
    box-shadow: 
        3px 3px 15px rgba(71, 85, 105, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(71, 85, 105, 0.12) 100%);
    border-left-color: var(--primary-color);
    transform: translateX(4px) scale(1.03);
    box-shadow: 
        4px 4px 20px rgba(71, 85, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(71, 85, 105, 0.1);
}

.nav-link i {
    margin-right: 0.75rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 252, 0.9) 100%);
    position: relative;
    backdrop-filter: blur(5px);
}

.nav-link i::before {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.nav-link i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover i {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 4px 12px rgba(71, 85, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-link:hover i::after {
    opacity: 1;
}

.nav-link.active i {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.2) 0%, rgba(255, 255, 255, 1) 100%);
    transform: scale(1.2) rotate(0deg);
    box-shadow: 
        0 6px 16px rgba(71, 85, 105, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(71, 85, 105, 0.1);
}

.nav-link.active i::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

/* Top Header */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}



.header-left {
    display: flex;
    align-items: center;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    display: none;
}

.sidebar-toggle:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-btn:hover {
    background: var(--gray-100);
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #64748b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 0.75rem;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
}



.user-info h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}

.user-info small {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* Content Area */
.content-area {
    padding: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .sidebar-toggle {
        display: block !important;
    }
    
    .content-area {
        padding: 0.75rem;
    }
    
    .top-header {
        padding: 1rem;
    }
    
    /* Mobile Logo Adjustments */
    .sidebar-header {
        padding: 1.5rem 1rem;
    }
    
    .sidebar-brand .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .brand-title {
        font-size: 1.1rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .sidebar-header {
        padding: 1.25rem 0.8rem;
    }
    
    .sidebar-brand .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .brand-title {
        font-size: 1rem;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
}

/* Navigation Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.3px;
    color: white !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem !important;
    border-radius: 6px;
    margin: 0 0.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white !important;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Card Styles */
.card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--gray-300);
}

.card-header {
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    border-radius: 12px 12px 0 0 !important;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
    padding: 1rem 1.25rem;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

/* Stats Cards */
.card.bg-primary {
    background: linear-gradient(135deg, #475569, #64748b) !important;
    border: none;
    color: white;
}

.card.bg-success {
    background: linear-gradient(135deg, #059669, #10b981) !important;
    border: none;
    color: white;
}

.card.bg-info {
    background: linear-gradient(135deg, #0284c7, #0ea5e9) !important;
    border: none;
    color: white;
}

.card.bg-warning {
    background: linear-gradient(135deg, #d97706, #f59e0b) !important;
    border: none;
    color: white;
}

.card.bg-primary,
.card.bg-success,
.card.bg-info,
.card.bg-warning {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card.bg-primary:hover,
.card.bg-success:hover,
.card.bg-info:hover,
.card.bg-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.1px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:focus {
    box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #10b981);
    border: none;
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #047857, var(--success-color));
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #ef4444);
    border: none;
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c, var(--danger-color));
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #f59e0b);
    border: none;
    color: white;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #c2410c, var(--warning-color));
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Table Styles */
.table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    margin-bottom: 0;
}

.table thead th {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    color: var(--dark-color);
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--gray-200);
}

.table tbody tr:hover {
    background-color: var(--gray-50);
    transform: translateX(2px);
}

.table tbody tr:last-child {
    border-bottom: none;
}

.table tbody td {
    padding: 1rem;
    border: none;
    vertical-align: middle;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.table tbody td:first-child {
    font-weight: 500;
    color: var(--dark-color);
}

/* Badge Styles */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    letter-spacing: 0.2px;
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--success-color), #10b981) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--warning-color), #f59e0b) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, var(--danger-color), #ef4444) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid var(--gray-300);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.1);
    background-color: white;
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1px;
}

.form-floating > label {
    color: var(--gray-500);
    font-weight: 400;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    font-weight: 500;
}

/* Modal Styles - Tamamen Manuel Kontrol */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    margin: 0;
    max-width: 800px;
    width: 90%;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: white;
    position: relative;
    z-index: 10000;
}

.modal-backdrop {
    display: none !important;
}

/* Bootstrap modal event'lerini tamamen devre dışı bırak */
.modal.fade {
    transition: none !important;
}

.modal.fade .modal-dialog {
    transition: none !important;
}

.modal-backdrop.fade {
    transition: none !important;
}

.modal-header {
    border-bottom: 1px solid #f1f3f4;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, var(--primary-color), #5a36a3);
    color: white;
}

.modal-title {
    font-weight: 600;
}

.modal-footer {
    border-top: 1px solid #f1f3f4;
    border-radius: 0 0 20px 20px;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: 1px solid;
    padding: 1rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #fed7aa;
    color: #92400e;
}

.alert-info {
    background-color: #f0f9ff;
    border-color: #bae6fd;
    color: #1e40af;
}

/* Search Box */
.search-box {
    position: relative;
}

.search-box input {
    padding-left: 3rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

/* Pagination */
.pagination .page-link {
    border-radius: 50px;
    margin: 0 2px;
    border: 2px solid transparent;
    font-weight: 500;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0.8rem !important;
        margin: 0.1rem 0;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .card-body {
        padding: 0.875rem;
    }
    
    .table-responsive {
        border-radius: 12px;
        margin: 0 -0.5rem;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .btn-sm {
        padding: 0.375rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .row > * {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .card-header {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
}

/* Admin Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    background: #f8fafc;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 100vh;
}

.content-area {
    padding: 2rem;
}

.sidebar-toggle {
    display: none;
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(71, 85, 105, 0.2);
    margin-right: 1rem;
}

.sidebar-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.3);
}

.header-left {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Page Header Meta */
.page-header-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.page-category {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-divider {
    color: var(--gray-400);
    margin: 0 0.75rem;
    font-weight: 300;
}

.page-type {
    color: var(--gray-600);
    font-weight: 500;
}

.page-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--dark-color);
    letter-spacing: -0.5px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.page-title:hover {
    transform: translateY(-1px);
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.user-dropdown .user-btn {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-dropdown .user-btn:hover {
    background: #f8fafc;
    border-color: rgba(71, 85, 105, 0.2);
}

.user-info {
    margin-right: 0.5rem;
    text-align: right;
    position: relative;
    z-index: 2;
}

.user-info h6 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
}

.user-info small {
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a36a3, #7c3aed);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .main-content {
        margin-left: 0;
    }
    
    .sidebar {
        left: -280px;
        box-shadow: none;
    }
    
    .sidebar.show {
        left: 0;
        box-shadow: 8px 0 25px rgba(0, 0, 0, 0.15);
    }
    
    .sidebar-toggle {
        display: flex;
        background: var(--primary-color);
    }
    
    .content-area {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 1.25rem;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 1rem;
}

.header-action-btn {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--gray-600);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
}

.header-action-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb-container {
    margin-top: 0.25rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
}

.breadcrumb-item {
    color: var(--gray-500);
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--gray-400);
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .top-header {
        padding: 1rem 1.5rem;
    }
    
    .content-area {
        padding: 0.75rem;
    }
    
    .page-title {
        font-size: 1.35rem;
    }
    
    .page-header-meta {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .page-divider {
        margin: 0 0.5rem;
    }
    
    .user-info {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .sidebar-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .breadcrumb-container {
        display: none;
    }
    
    .page-header-meta {
        display: none;
    }
}

/* Debt Management Styles */
.debt-priority-acil {
    border-left: 4px solid #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.debt-priority-yüksek {
    border-left: 4px solid #fd7e14;
    background-color: rgba(253, 126, 20, 0.05);
}

.debt-priority-normal {
    border-left: 4px solid #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.debt-priority-düşük {
    border-left: 4px solid #6c757d;
    background-color: rgba(108, 117, 125, 0.05);
}

.debt-overdue {
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { background-color: rgba(220, 53, 69, 0.1); }
    50% { background-color: rgba(220, 53, 69, 0.2); }
    100% { background-color: rgba(220, 53, 69, 0.1); }
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: var(--gray-200);
    background-color: var(--gray-50);
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #64748b 100%);
    color: white;
    border-color: var(--primary-color);
    border-bottom-color: transparent;
}

.nav-tabs .nav-link.active:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #4a5568 100%);
}

.debt-amount-display {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.1em;
}

.debt-status-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
    font-weight: 600;
}

.priority-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.priority-indicator.acil {
    background-color: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.5);
}

.priority-indicator.yüksek {
    background-color: #fd7e14;
    box-shadow: 0 0 6px rgba(253, 126, 20, 0.5);
}

.priority-indicator.normal {
    background-color: #0d6efd;
    box-shadow: 0 0 4px rgba(13, 110, 253, 0.3);
}

.priority-indicator.düşük {
    background-color: #6c757d;
}

.debt-modal .modal-header {
    background: linear-gradient(135deg, #fd7e14 0%, #dc3545 100%);
    color: white;
}

.debt-payment-modal .modal-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

@media (max-width: 576px) {
    .top-header {
        padding: 0.75rem 1rem;
    }
    
    .content-area {
        padding: 0.5rem;
    }
    
    .sidebar-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        margin-right: 0.5rem;
    }
    
    .page-title {
        font-size: 1rem;
    }
} 

/* Login Page Styles */
.login-wrapper {
    display: flex;
    height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.brand-section {
    flex: 1;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="60" cy="40" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.login-section {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
}

.brand-logo {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.brand-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: gentlePulse 3s ease-in-out infinite;
}

.brand-icon i {
    font-size: 3.5rem;
    color: white;
}

.brand-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.feature-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.login-header {
    text-align: left;
    margin-bottom: 2rem;
}

.login-header h2 {
    color: #1e293b;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.login-header p {
    color: #64748b;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.form-label i {
    opacity: 0.7;
    font-size: 0.85rem;
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    border-color: #475569;
    box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.1);
    background: white;
    transform: translateY(-1px);
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: #475569;
    background: rgba(71, 85, 105, 0.1);
}

.btn-login {
    background: linear-gradient(135deg, #475569, #64748b);
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    width: 100%;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(71, 85, 105, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-login:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-login:hover:before {
    left: 100%;
}

.btn-login:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.2);
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(71, 85, 105, 0.25);
    background: linear-gradient(135deg, #3c454f, #515c6a);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(71, 85, 105, 0.2);
    transition: all 0.15s ease;
}

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-label {
    color: #64748b;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: #475569;
    border-color: #475569;
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
}

.demo-info {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.demo-info h6 {
    color: #475569;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.2px;
}

.demo-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.demo-info code {
    background: white;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    margin: 0 0.2rem;
    border: 1px solid #e2e8f0;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

/* Responsive Login */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
    }
    
    .brand-section {
        flex: none;
        height: 40vh;
        padding: 2rem;
    }
    
    .brand-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .brand-icon i {
        font-size: 2.5rem;
    }
    
    .brand-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .brand-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .brand-features {
        display: none;
    }
    
    .login-section {
        flex: 1;
        padding: 1.5rem;
    }
    
    .login-container {
        padding: 1rem;
    }
    
    .login-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .brand-section {
        height: 35vh;
        padding: 1.5rem;
    }
    
    .brand-title {
        font-size: 1.6rem;
    }
    
    .brand-subtitle {
        font-size: 0.9rem;
    }
    
    .login-section {
        padding: 1rem;
    }
} 