/* Global Variables - Dinamik Tema Sistemi */
:root {
    /* Tema renkleri - JavaScript ile değiştirilecek */
    --theme-primary: #ffb6b9;
    --theme-secondary: #ff7eb3;
    --theme-gradient-start: #ffb6b9;
    --theme-gradient-end: #ff7eb3;
    
    /* Sabit değerler */
    --glass-bg: transparent;
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    
    /* Eski değişkenler - geriye uyumluluk için */
    --primary-pink: var(--theme-primary);
    --secondary-pink: var(--theme-secondary);
}

/* Global Background - Dinamik Tema */
html {
    background: linear-gradient(135deg, var(--theme-gradient-start) 0%, var(--theme-gradient-end) 100%);
    min-height: 100%;
    transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background: linear-gradient(135deg, var(--theme-gradient-start) 0%, var(--theme-gradient-end) 100%);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.15) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 30px 30px;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-attachment: fixed;
    transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Layout specific styles */
body.main-layout {
    padding-top: 56px; /* Navbar boyutuna göre ayarlandı (48px + 8px margin) */
}



body.login-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
}

/* Navbar Styles - Modern Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 0;
    pointer-events: none;
    z-index: -1;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.navbar-content {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0 30px;
}

.navbar-brand {
    position: absolute;
    left: 5%; /* Sol tarafta %5 konumda */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.navbar-brand a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.navbar-brand a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transform: translateY(-1px);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar:hover .navbar-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.navbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.navbar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

.navbar-item:hover::before {
    left: 100%;
}

.navbar-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar-icon {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-text {
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.navbar-user {
    position: absolute;
    right: 5%; /* Sağ tarafta %5 konumda */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.user-menu {
    position: relative;
    cursor: pointer;
}

.user-icon {
    color: white;
    font-size: 0.92rem;
    padding: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.user-icon:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.user-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    backdrop-filter: blur(25px);
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-dropdown a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

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

.user-dropdown a:hover::before {
    left: 100%;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-dropdown a[href="/Admin"] {
    background: linear-gradient(135deg, rgba(255, 117, 140, 0.2) 0%, rgba(255, 126, 179, 0.2) 100%);
    border: 1px solid rgba(255, 117, 140, 0.3);
    color: #ff758c;
    font-weight: 600;
}

.user-dropdown a[href="/Admin"]:hover {
    background: linear-gradient(135deg, rgba(255, 117, 140, 0.3) 0%, rgba(255, 126, 179, 0.3) 100%);
    border-color: rgba(255, 117, 140, 0.5);
    transform: translateX(3px);
}

/* Container padding adjustment */
.container {
    padding: 20px;
    padding-bottom: 140px; /* Dock bar butonları kapatmasın */
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    animation: waveGrid 15s linear infinite;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform;
}

.grid-overlay::before,
.grid-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(135deg, 
            transparent 0%, 
            transparent 48%, 
            rgba(0, 0, 0, 0.15) 49%, 
            rgba(0, 0, 0, 0.15) 51%, 
            transparent 52%, 
            transparent 100%
        );
    background-size: var(--grid-size) var(--grid-size);
    backdrop-filter: blur(1px);
}

.grid-overlay::before {
    transform: translateZ(10px);
    opacity: 0.7;
    background-size: calc(var(--grid-size) * 1.5) calc(var(--grid-size) * 1.5);
    filter: blur(0.5px);
}

.grid-overlay::after {
    transform: translateZ(-10px);
    opacity: 0.5;
    background-size: calc(var(--grid-size) * 2) calc(var(--grid-size) * 2);
    filter: blur(1px);
}

@keyframes waveGrid {
    0% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0);
    }
    25% {
        transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateZ(30px);
    }
    50% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(60px);
    }
    75% {
        transform: perspective(1000px) rotateX(-2deg) rotateY(2deg) translateZ(30px);
    }
    100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0);
    }
}

/* Matrix Effect */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Glass Container */
.glass-container {
    position: relative;
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--glass-shadow), 0 1.5px 6px rgba(0,0,0,0.18);
    border: 1px solid var(--glass-border);
    padding: 35px;
    width: 100%;
    max-width: 400px;
    animation: containerFadeIn 0.8s ease forwards;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global Card System - Minimal & Consistent */
.page-container {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    position: relative;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
}

.page-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.page-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.page-content {
    margin-top: 20px;
}

.content-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.content-card-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body.main-layout {
        padding: 15px;
        padding-top: 56px;
    }
    
    body.login-layout {
        padding: 15px;
    }
    
    .glass-container {
        padding: 25px;
    }
    
    .navbar {
        height: 44px;
    }
    
    .navbar:hover {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(30px) saturate(180%);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    .navbar-content {
        padding: 0 15px;
    }
    
    .navbar-brand {
        left: 3%;
    }
    
    .navbar-brand a {
        font-size: 1.2rem;
    }
    
    .search-container {
        left: 20%; /* Desktop'taki konumu koruyoruz */
        width: 200px; /* Desktop'a yakın boyut */
    }
    
    .search-box {
        min-width: 200px;
        height: 32px; /* Desktop ile aynı yükseklik */
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
        border-radius: 20px; /* Desktop ile aynı radius */
    }
    
    .search-input {
        font-size: 0.8rem !important;
        padding: 6px 12px; /* Desktop ile aynı padding */
        font-weight: 700 !important;
        letter-spacing: 0.4px !important;
        text-transform: uppercase !important;
        font-style: italic !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8) !important;
        transition: none !important;
        transform: none !important;
        background: transparent;
        border: none;
        outline: none;
        color: white !important;
        font-family: 'Fredoka', sans-serif;
        position: relative;
        z-index: 1;
    }
    
    .search-button {
        padding: 4px 6px;
        background: transparent !important;
        border: none !important;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
        border-radius: 50%;
        margin-right: 2px;
        box-shadow: none !important;
        width: 24px;
        height: 24px;
    }
    
    .search-button:hover {
        background: transparent !important;
        border: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .search-icon {
        font-size: 1.4rem !important;
        text-shadow: none !important; /* Tablet'te de gölge yok */
        filter: none !important; /* Tablet'te de filter yok */
    }
    
    .search-button:hover .search-icon {
        transform: none !important;
        filter: none !important; /* Tablet hover'da da filter yok */
    }
    
    .navbar-user {
        right: 3%;
    }
    
    .user-icon {
        font-size: 1.12rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    body.main-layout {
        padding: 10px;
        padding-top: 56px;
    }
    
    body.login-layout {
        padding: 10px;
    }
    
    .glass-container {
        padding: 20px;
        border-radius: 10px;
    }
    
    .navbar-content {
        padding: 0 10px;
    }
    
    .navbar-brand {
        left: 2%;
    }
    
    .navbar-brand a {
        font-size: 1.1rem;
    }
    
    .search-container {
        left: 18%; /* Mobilde biraz daha sola */
        width: 180px; /* Desktop'a yakın boyut */
    }
    
    .search-box {
        min-width: 180px;
        height: 32px; /* Desktop ile aynı yükseklik */
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
        border-radius: 20px; /* Desktop ile aynı radius */
    }
    
    .search-input {
        font-size: 0.75rem !important;
        padding: 6px 12px; /* Desktop ile aynı padding */
        font-weight: 700 !important;
        letter-spacing: 0.4px !important;
        text-transform: uppercase !important;
        font-style: italic !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8) !important;
        transition: none !important;
        transform: none !important;
        background: transparent;
        border: none;
        outline: none;
        color: white !important;
        font-family: 'Fredoka', sans-serif;
        position: relative;
        z-index: 1;
    }
    
    .search-button {
        padding: 4px 6px;
        background: transparent !important;
        border: none !important;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
        border-radius: 50%;
        margin-right: 2px;
        box-shadow: none !important;
        width: 24px;
        height: 24px;
    }
    
    .search-button:hover {
        background: transparent !important;
        border: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .search-icon {
        font-size: 1.3rem !important;
        text-shadow: none !important; /* Mobil'de de gölge yok */
        filter: none !important; /* Mobil'de de filter yok */
    }
    
    .search-button:hover .search-icon {
        transform: none !important;
        filter: none !important; /* Mobil hover'da da filter yok */
    }
    
    .navbar-user {
        right: 2%;
    }
    
    .user-icon {
        font-size: 0.9rem;
        padding: 6px;
    }
}

@media (max-height: 600px) {
    .glass-container {
        margin: 10px;
        padding: 20px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .glass-container {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Dock Bar Styles - Global */
.dock-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none; /* Varsayılan: tıklamaları engelleme */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
    /* Hover alanını genişlet */
    padding: 20px;
    margin: -20px;
}

.dock {
    display: flex;
    align-items: end;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock.expanded {
    transform: translateY(0);
    opacity: 1;
}

/* Dashboard sayfasında dockbar her zaman görünür */
body.dashboard-page .dock-container {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
    display: block !important;
    pointer-events: auto; /* Dashboard'da etkileşim açık */
}

/* Diğer sayfalarda dockbar hover alanı */
.dock-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: transparent;
    z-index: -1;
}

.dock-trigger {
    display: none;
}

.dock-items {
    display: flex;
    gap: 8px;
    align-items: end;
}

.dock-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease-out;
    backdrop-filter: blur(10px);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    filter: brightness(0.8) contrast(1) saturate(1);
}

.dock-item:hover {
    transform: scale(1.3) translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.9);
    filter: brightness(1) contrast(1) saturate(1);
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-out;
    pointer-events: none;
    z-index: 1001;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.dock-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Hover gradients for each dock item position */
.dock-item:nth-child(1):hover { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.dock-item:nth-child(2):hover { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.dock-item:nth-child(3):hover { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.dock-item:nth-child(4):hover { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.dock-item:nth-child(5):hover { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.dock-item:nth-child(6):hover { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.dock-item:nth-child(7):hover { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.dock-item:nth-child(8):hover { background: linear-gradient(135deg, #ff8a80 0%, #ea80fc 100%); }
.dock-item:nth-child(9):hover { background: linear-gradient(135deg, #8fd3f4 0%, #84fab0 100%); }
.dock-item:nth-child(10):hover { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
.dock-item:nth-child(11):hover { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
.dock-item:nth-child(12):hover { background: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%); }
.dock-item:nth-child(13):hover { background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%); }
.dock-item:nth-child(14):hover { background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%); }
.dock-item:nth-child(15):hover { background: linear-gradient(135deg, #85ffbd 0%, #fffb7d 100%); }
.dock-item:nth-child(16):hover { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.dock-item:nth-child(17):hover { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.dock-item:nth-child(18):hover { background: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%); }
.dock-item:nth-child(19):hover { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.dock-item:nth-child(20):hover { background: linear-gradient(135deg, #c2e9fb 0%, #a1c4fd 100%); }
.dock-item:nth-child(21):hover { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .dock {
        padding: 8px 10px;
        border-radius: 15px;
    }
    
    .dock-item {
        width: 40px;
        height: 40px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        filter: brightness(0.8) contrast(1) saturate(1);
    }
    
    .dock-item:hover {
        transform: scale(1.2) translateY(-8px);
        color: rgba(255, 255, 255, 0.9);
        filter: brightness(1) contrast(1) saturate(1);
    }
    
    .dock-items {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .dock-items {
        max-width: 300px;
    }
    
    .dock-item {
        width: 35px;
        height: 35px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        filter: brightness(0.8) contrast(1) saturate(1);
    }
}

/* Search Container - Modern Glassmorphism */
.search-container {
    position: absolute;
    left: 25%; /* Desktop'ta %25 konumda */
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 1;
    max-width: 400px; /* Desktop için maksimum genişlik */
    width: 300px; /* Desktop genişliği */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover .search-container {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 300px; /* Desktop minimum genişliği */
    height: 32px; /* Desktop yüksekliği */
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    pointer-events: none;
    z-index: 0;
}

.search-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: none;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    padding: 6px 12px;
    font-family: 'Fredoka', sans-serif;
    position: relative;
    z-index: 1;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    font-style: italic !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8) !important;
    transition: none !important;
    transform: none !important;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: capitalize !important;
    font-style: normal !important;
    font-weight: 500 !important;
    letter-spacing: 0.4px !important;
    font-size: 0.85rem !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.search-input:focus {
    transform: none !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    font-style: italic !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    color: white !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8) !important;
}

.search-input:hover {
    transform: none !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    font-style: italic !important;
    color: white !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8) !important;
}

.search-button {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border-radius: 50%;
    margin-right: 2px;
    box-shadow: none !important;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
}

.search-button:hover {
    background: transparent !important;
    border: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.search-button:active {
    transform: scale(0.98);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.search-icon {
    color: white !important;
    font-size: 14px !important;
    text-shadow: none !important;
    filter: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.search-icon:hover {
    transform: none !important;
    filter: none !important;
}

/* Temel Sekme Stilleri */
.tabs-container {
    background: transparent !important;
    /* border-radius: 8px !important; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important; */
    /* padding: 20px !important; */
    padding: 0 !important;
    /* margin-top: 20px !important; */
    margin-top: 0 !important;
}

/* Modern sekmeler */
.tabs-container .nav-tabs {
    border: none !important;
    background: transparent !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
    gap: 2px;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.tabs-container .nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    padding: 0.5rem 0.8rem !important;
    border: none !important;
    border-radius: 8px 8px 0 0 !important;
    margin: 0 1px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    font-size: 0.85rem !important;
    letter-spacing: 0.3px;
    text-shadow: none !important;
}

/* Temel Bilgiler - Mavi */
.tabs-container .nav-tabs .nav-item:nth-child(1) .nav-link {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.3), rgba(41, 128, 185, 0.3)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(1) .nav-link:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.5), rgba(41, 128, 185, 0.5)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(1) .nav-link.active {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(41, 128, 185, 0.8)) !important;
}

/* ERP Bilgileri - Turuncu */
.tabs-container .nav-tabs .nav-item:nth-child(2) .nav-link {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.3), rgba(230, 126, 34, 0.3)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(2) .nav-link:hover {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.5), rgba(230, 126, 34, 0.5)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(2) .nav-link.active {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.8), rgba(230, 126, 34, 0.8)) !important;
}

/* Özel Yazılım - Mor */
.tabs-container .nav-tabs .nav-item:nth-child(3) .nav-link {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3), rgba(142, 68, 173, 0.3)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(3) .nav-link:hover {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.5), rgba(142, 68, 173, 0.5)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(3) .nav-link.active {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.8), rgba(142, 68, 173, 0.8)) !important;
}

/* Ağ/Depolama - Yeşil */
.tabs-container .nav-tabs .nav-item:nth-child(4) .nav-link {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), rgba(39, 174, 96, 0.3)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(4) .nav-link:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.5), rgba(39, 174, 96, 0.5)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(4) .nav-link.active {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.8), rgba(39, 174, 96, 0.8)) !important;
}

/* Güvenlik Duvarı - Kırmızı */
.tabs-container .nav-tabs .nav-item:nth-child(5) .nav-link {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3), rgba(192, 57, 43, 0.3)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(5) .nav-link:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.5), rgba(192, 57, 43, 0.5)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(5) .nav-link.active {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8)) !important;
}

/* Modem Bilgileri - Cyan */
.tabs-container .nav-tabs .nav-item:nth-child(6) .nav-link {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.3), rgba(22, 160, 133, 0.3)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(6) .nav-link:hover {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.5), rgba(22, 160, 133, 0.5)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(6) .nav-link.active {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.8), rgba(22, 160, 133, 0.8)) !important;
}

/* Webmail - Sarı */
.tabs-container .nav-tabs .nav-item:nth-child(7) .nav-link {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.3), rgba(212, 172, 13, 0.3)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(7) .nav-link:hover {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.5), rgba(212, 172, 13, 0.5)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(7) .nav-link.active {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.8), rgba(212, 172, 13, 0.8)) !important;
}

/* Özel Parametreler - Pembe */
.tabs-container .nav-tabs .nav-item:nth-child(8) .nav-link {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(190, 24, 93, 0.3)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(8) .nav-link:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.5), rgba(190, 24, 93, 0.5)) !important;
}

.tabs-container .nav-tabs .nav-item:nth-child(8) .nav-link.active {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(190, 24, 93, 0.8)) !important;
}



.tabs-container .nav-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-1px) !important;
}

.tabs-container .nav-tabs .nav-link.active {
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

.tabs-container .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px 2px 0 0;
}

/* Aktif sekme alt border renkleri */
.tabs-container .nav-tabs .nav-item:nth-child(1) .nav-link.active::after {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.tabs-container .nav-tabs .nav-item:nth-child(2) .nav-link.active::after {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.tabs-container .nav-tabs .nav-item:nth-child(3) .nav-link.active::after {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.tabs-container .nav-tabs .nav-item:nth-child(4) .nav-link.active::after {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.tabs-container .nav-tabs .nav-item:nth-child(5) .nav-link.active::after {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.tabs-container .nav-tabs .nav-item:nth-child(6) .nav-link.active::after {
    background: linear-gradient(90deg, #1abc9c, #16a085);
}

.tabs-container .nav-tabs .nav-item:nth-child(7) .nav-link.active::after {
    background: linear-gradient(90deg, #f1c40f, #d4ac0d);
}

.tabs-container .nav-tabs .nav-item:nth-child(8) .nav-link.active::after {
    background: linear-gradient(90deg, #e91e63, #ad1457);
}

/* Sekme ikonları için stil */
.tabs-container .nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .tabs-container .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 !important;
        gap: 1px;
    }
    
    .tabs-container .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 0.4rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
    
    .tabs-container .nav-tabs .nav-link i {
        display: none;
    }
}

/* Sekme İçeriği - Modern */
.tabs-container .tab-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 30px !important;
}

.tabs-container .tab-pane {
    animation: fadeIn 0.5s ease-in-out;
    background: transparent !important;
    padding: 10px !important;
}

/* Form grupları */
.tabs-container .form-group {
    /* margin-bottom: 25px; */
    margin-bottom: 15px !important;
    background: transparent !important;
    position: relative;
}

.tabs-container .form-group label {
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.tabs-container .form-control,
.tabs-container .form-select {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15),
                0 0 15px rgba(255, 255, 255, 0.1);
}

.tabs-container .form-control:focus,
.tabs-container .form-select:focus {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
                0 0 10px rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: none;
}

/* Doldurulmuş input alanları için stil */
.tabs-container .form-control:not(:placeholder-shown),
.tabs-container .form-select:not(:placeholder-shown) {
    background-color: rgba(255, 255, 255, 0.02) !important;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05),
                0 0 4px rgba(255, 255, 255, 0.02);
}

/* Placeholder rengi */
.tabs-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Select (Dropdown) için özel stiller */
.form-select {
    cursor: pointer;
    padding: 12px 45px 12px 20px !important;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.3), rgba(255, 182, 193, 0.2)) !important;
    border: 2px solid rgba(255, 192, 203, 0.3);
    border-radius: 15px !important;
    backdrop-filter: blur(20px);
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='24px' height='24px'%3e%3cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3e%3c/svg%3e") !important;
    background-size: 20px !important;
    background-position: right 15px center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.1);
}

/* Select hover durumu */
.form-select:hover {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.35), rgba(255, 182, 193, 0.25)) !important;
    border-color: rgba(255, 192, 203, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 192, 203, 0.15),
                0 0 30px rgba(255, 192, 203, 0.1);
}

/* Select focus durumu */
.form-select:focus {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.4), rgba(255, 182, 193, 0.3)) !important;
    border-color: rgba(255, 192, 203, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 192, 203, 0.2),
                0 0 35px rgba(255, 192, 203, 0.15);
}

/* Select option'ları için stil */
.form-select option {
    background: rgba(255, 192, 203, 0.98);
    color: #fff;
    padding: 15px 20px;
    font-size: 0.95em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Select option hover ve seçili durumu */
.form-select option:hover,
.form-select option:focus {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.9), rgba(255, 182, 193, 0.8));
    padding-left: 25px;
}

.form-select option:checked {
    background: linear-gradient(135deg, rgba(255, 192, 203, 1), rgba(255, 182, 193, 0.9));
    font-weight: 500;
}

/* Select disabled durumu */
.form-select:disabled {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.15), rgba(255, 182, 193, 0.1)) !important;
    border-color: rgba(255, 192, 203, 0.2);
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.5)' width='24px' height='24px'%3e%3cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3e%3c/svg%3e") !important;
}

/* Select için özel pattern deseni */
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm2.5 2.5l7.5 7.5 7.5-7.5' stroke='rgba(255,255,255,0.5)' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(255, 192, 203, 0.3), rgba(255, 182, 193, 0.2)) !important;
    background-position: right 15px center, center !important;
    background-repeat: no-repeat, repeat !important;
    background-size: 12px, cover !important;
}

/* Bilgi Kartları */
.tabs-container .info-card {
    background: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
}

.tabs-container .info-card .title {
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
}

/* Özel Sekme Stilleri */
/* Temel Bilgiler Sekmesi */
#basic.tab-pane .form-row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: -10px !important;
}

#basic.tab-pane .form-col {
    flex: 1 !important;
    min-width: 250px !important;
    padding: 10px !important;
}

/* ERP Bilgileri Sekmesi */
#erp.tab-pane .erp-card {
    border-left: 4px solid #4CAF50 !important;
    background: #fff !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

/* Ağ Bilgileri Sekmesi */
#network.tab-pane .network-info {
    background: linear-gradient(to right, #f8f9fa, #fff) !important;
    border-radius: 8px !important;
    padding: 15px !important;
}

/* Güvenlik Bilgileri Sekmesi */
#security.tab-pane .security-status {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 6px !important;
    background: #e8f5e9 !important;
}

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

.tabs-container .tab-pane.active {
    animation: fadeIn 0.3s ease-out !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .tabs-container .nav-tabs {
        flex-direction: column !important;
        gap: 5px !important;
    }

    .tabs-container .nav-tabs .nav-link {
        width: 100% !important;
        text-align: left !important;
        padding: 10px 15px !important;
        border-radius: 4px !important;
    }

    .tabs-container .nav-tabs .nav-link.active {
        background: #f0f7ff !important;
        border-bottom: none !important;
        border-left: 3px solid #2196F3 !important;
    }

    .tabs-container .form-row {
        flex-direction: column !important;
    }

    .tabs-container .form-col {
        width: 100% !important;
    }
}

/* Aksiyon Butonları */
.tabs-container .action-buttons {
    display: flex !important;
    gap: 10px !important;
    margin-top: 20px !important;
    justify-content: flex-end !important;
}

.tabs-container .action-button {
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.tabs-container .action-button-primary {
    background: #2196F3 !important;
    color: white !important;
    border: none !important;
}

.tabs-container .action-button-secondary {
    background: #f5f5f5 !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

.tabs-container .action-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

.tabs-container .action-button-primary:hover {
    background: #1976D2 !important;
}

.tabs-container .action-button-secondary:hover {
    background: #e0e0e0 !important;
}

/* Validation Mesajları */
.tabs-container .validation-message {
    color: #dc3545 !important;
    font-size: 0.875rem !important;
    margin-top: 4px !important;
    display: block !important;
}







/* Form alanları glass efekti */
.tabs-container .form-control {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    color: white !important;
    padding: 15px 20px !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    letter-spacing: 0.3px;
}

.tabs-container .form-control:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px);
}

.tabs-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 400;
}

/* Form etiketleri */
.tabs-container label {
    color: white !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}



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

/* Tüm container'ların arka planını temizle */
.container, 
.container-fluid,
.row,
.col,
.col-md-6,
.card,
.card-body {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Form alanı hover efekti */
.tabs-container .form-control:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18) !important;
    transform: translateY(-1px);
}

/* Modern Toast Notification System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(100%);
    opacity: 0;
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 2px;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-success::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

.toast-warning {
    border-left: 4px solid #f59e0b;
}

.toast-warning::before {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info::before {
    background: linear-gradient(180deg, #3b82f6, #2563eb);
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-icon {
    font-size: 16px;
}

.toast-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 18px;
    line-height: 1;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #374151;
}

.toast-message {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 0 0 12px 12px;
    transition: width linear;
}

/* Toast Animation Variants */
.toast-slide-in {
    animation: slideInRight 0.3s ease-out;
}

.toast-slide-out {
    animation: slideOutRight 0.3s ease-in;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Toast Types with Icons */
.toast-success .toast-icon::before {
    content: "✅";
}

.toast-error .toast-icon::before {
    content: "❌";
}

.toast-warning .toast-icon::before {
    content: "⚠️";
}

.toast-info .toast-icon::before {
    content: "ℹ️";
}

/* Responsive Design */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        margin-bottom: 8px;
        padding: 14px 16px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .toast {
        background: rgba(31, 41, 55, 0.95);
        border: 1px solid rgba(75, 85, 99, 0.2);
    }
    
    .toast-title {
        color: #f9fafb;
    }
    
    .toast-message {
        color: #d1d5db;
    }
    
    .toast-close {
        color: #9ca3af;
    }
    
    .toast-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #e5e7eb;
    }
}

/* ====================================
   MODAL COMPONENT - Global Glass Modal
   ==================================== */

/* Modal Overlay */
.glass-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-modal.show {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.glass-modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(150%);
    border-radius: 16px;
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid var(--glass-border);
    padding: 0;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-modal.show .glass-modal-content {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.glass-modal-header {
    padding: 24px 28px 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px 16px 0 0;
}

.glass-modal-title {
    color: white;
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.glass-modal-close {
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.glass-modal-close:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.2);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Modal Body */
.glass-modal-body {
    padding: 28px;
}

/* Modal Form Elements */
.glass-modal .form-group {
    margin-bottom: 1.2rem;
}

.glass-modal .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.glass-modal .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 10px 12px;
    width: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.glass-modal .form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
    transform: none;
}

.glass-modal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Form Row */
.glass-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

/* Modal Actions */
.glass-modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Modal Buttons */
.glass-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    backdrop-filter: blur(10px);
    text-decoration: none;
    min-width: 100px;
}

.glass-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.glass-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #7c8df0 0%, #8b5ab8 100%);
}

.glass-btn-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.glass-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff8a8a 0%, #f66b62 100%);
}

.glass-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Checkbox Group in Modal */
.glass-modal .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.glass-modal .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    cursor: pointer;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .glass-modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .glass-modal-header {
        padding: 18px 22px 14px 22px;
    }
    
    .glass-modal-body {
        padding: 22px;
    }
    
    .glass-modal-title {
        font-size: 1.2rem;
    }

    .glass-modal .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .glass-modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .glass-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .glass-modal-content {
        width: 98%;
        margin: 5px;
    }
    
    .glass-modal-header {
        padding: 16px 18px 12px 18px;
    }
    
    .glass-modal-body {
        padding: 18px;
    }
}

/* ====================================
   CALENDAR PAGE - Glass Calendar Styles
   ==================================== */

/* Calendar Container */
.calendar-container {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 1.5px 6px rgba(0,0,0,0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 35px;
    width: 100%;
    max-width: 1400px;
    margin: 50px auto;
    position: relative;
    min-height: 80vh;
}

.calendar-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', sans-serif;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.calendar-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.event-form-section {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(12px);
    height: fit-content;
    position: sticky;
    top: 20px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.form-title {
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.calendar-main {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    min-width: 0;
    overflow: hidden;
}

/* FullCalendar Custom Styles */
.fc {
    background: transparent !important;
    color: white !important;
    font-family: 'Fredoka', sans-serif !important;
}

.fc-toolbar-title {
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.fc-button {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(6px) !important;
    border: 1px solid var(--glass-border) !important;
    color: white !important;
    border-radius: 4px !important;
    font-size: 0.85rem !important;
    padding: 4px 8px !important;
    transition: all 0.3s ease !important;
}

.fc-button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px) !important;
}

.fc-button:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) !important;
}

.fc-daygrid-day {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
}

.fc-daygrid-day:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    cursor: pointer !important;
    transform: scale(1.01) !important;
}

.fc-day-today {
    background: rgba(102, 126, 234, 0.2) !important;
}

.fc-daygrid-day-number {
    color: white !important;
    font-weight: 500 !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.fc-daygrid-day-number:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
}

/* ULTIMATE NUCLEAR HEADER STYLES */
.fc-col-header-cell,
th.fc-col-header-cell,
.fc-theme-standard .fc-col-header-cell,
.fc-scrollgrid-section-header .fc-col-header-cell,
table.fc-col-header-table th,
.fc-col-header-table .fc-col-header-cell,
.fc-col-header-cell-cushion,
.fc-sticky,
* [class*="fc-col-header"],
* .fc-col-header-cell,
* th.fc-col-header-cell,
html body .fc .fc-scrollgrid .fc-scrollgrid-section .fc-scrollgrid-section-header .fc-col-header .fc-col-header-table .fc-col-header-table thead .fc-col-header-table thead tr .fc-col-header-cell,
html body .fc .fc-scrollgrid .fc-scrollgrid-section .fc-scrollgrid-section-header .fc-col-header .fc-col-header-table thead tr th.fc-col-header-cell,
html body .fc .fc-theme-standard .fc-col-header-cell,
html body .fc table.fc-scrollgrid-sync-table tbody tr th.fc-col-header-cell,
html body .fc .fc-scrollgrid-section-header .fc-col-header-cell,
html body table.fc-col-header-table th,
html body .fc-col-header-table .fc-col-header-cell,
html body .fc-col-header-cell-cushion,
html body .fc-sticky,
html body * [class*="fc-col-header"],
html body * .fc-col-header-cell,
html body * th.fc-col-header-cell {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-color: transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-style: none !important;
    border-width: 0 !important;
    box-shadow: none !important;
    color: white !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.8) !important,
        0 0 4px rgba(0, 0, 0, 0.6) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* ULTIMATE FORCE OVERRIDE WITH ATTRIBUTE SELECTORS */
[class*="fc-col-header"][style],
[class*="fc-col-header-cell"][style],
th[class*="fc-col-header"][style],
td[class*="fc-col-header"][style] {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
}

/* NUCLEAR INLINE STYLES OVERRIDE */
html body .fc-col-header-cell[style],
html body th.fc-col-header-cell[style],
html body .fc-col-header-cell-cushion[style],
html body .fc-col-header[style],
html body .fc-col-header-table[style],
html body .fc-scrollgrid-section-header[style] {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-style: none !important;
    border-width: 0 !important;
    box-shadow: none !important;
}

/* NUCLEAR HEADER CONTAINERS */
html body .fc-col-header,
html body .fc-col-header-table,
html body .fc-scrollgrid-section-header,
html body .fc-scrollgrid-section,
html body .fc-scrollgrid {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-style: none !important;
    border-width: 0 !important;
    box-shadow: none !important;
}

/* NUCLEAR DAY NAMES */
html body .fc-col-header-cell a,
html body .fc-col-header-cell span,
html body .fc-col-header-cell .fc-col-header-cell-cushion,
html body .fc-col-header-cell-cushion a,
html body .fc-col-header-cell-cushion span {
    color: white !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9) !important,
        -2px -2px 4px rgba(0, 0, 0, 0.7) !important,
        2px -2px 4px rgba(0, 0, 0, 0.7) !important,
        -2px 2px 4px rgba(0, 0, 0, 0.7) !important,
        0 0 8px rgba(0, 0, 0, 0.8) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Calendar Responsive */
@media (max-width: 900px) {
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-form-section {
        order: 2;
        padding: 15px;
        position: static;
    }
    
    .calendar-main {
        order: 1;
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .calendar-container {
        padding: 20px;
        margin: 20px auto;
    }
    
    .calendar-title {
        font-size: 1.5rem;
    }
    
    .event-form-section {
        padding: 12px;
    }
    
    .calendar-main {
        padding: 12px;
    }
}

/* Glass Form Inputs - NO BACKGROUND AT ALL */
.event-form-section input[type="text"],
.event-form-section input[type="datetime-local"],
.event-form-section textarea,
.event-form-section input[type="color"],
input[type="text"],
input[type="datetime-local"],
textarea,
input[type="color"] {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* NUCLEAR TRANSPARENT OVERRIDE */
.event-form-section input,
.event-form-section textarea,
.event-form-section select {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.event-form-section input[type="text"]:focus,
.event-form-section input[type="datetime-local"]:focus,
.event-form-section textarea:focus,
input:focus,
textarea:focus {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3) !important;
    outline: none !important;
}

.event-form-section input::placeholder,
.event-form-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Glass Checkbox */
.event-form-section input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 4px !important;
    backdrop-filter: blur(8px) !important;
    appearance: none !important;
    cursor: pointer !important;
}

.event-form-section input[type="checkbox"]:checked {
    background: rgba(100, 200, 255, 0.3) !important;
    border-color: rgba(100, 200, 255, 0.6) !important;
}

.event-form-section input[type="checkbox"]:checked::after {
    content: '✓' !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

/* Glass Button Override */
.event-form-section .glass-btn,
.event-form-section button[type="submit"] {
    background: transparent !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
}

.event-form-section .glass-btn:hover,
.event-form-section button[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

/* Glass Color Input */
.event-form-section input[type="color"] {
    height: 45px !important;
    cursor: pointer !important;
}

/* Glass Textarea */
.event-form-section textarea {
    min-height: 80px !important;
    resize: vertical !important;
}

/* ULTIMATE NUCLEAR TRANSPARENT - FORM INPUTS ONLY */
input, textarea, select, 
input *, textarea *, select *,
.event-form-section input,
.event-form-section textarea,
.event-form-section select,
.form-group input,
.form-group textarea,
.form-row input,
.form-row textarea {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

input[type="text"], input[type="email"], input[type="password"], 
input[type="datetime-local"], input[type="date"], input[type="time"],
input[type="color"], textarea, select {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* BROWSER SPECIFIC OVERRIDES */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.01) inset !important;
    -webkit-text-fill-color: white !important;
    background: rgba(255, 255, 255, 0.01) !important;
    background-color: rgba(255, 255, 255, 0.01) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* FIREFOX SPECIFIC */
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

/* WEBKIT SPECIFIC */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Login sayfası buton stilleri - Pembe tema (varsayılan) */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-pink) 100%) !important;
    border: 2px solid rgba(255, 182, 185, 0.3) !important;    
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 182, 185, 0.3) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffa6a9 0%, #ff6ea3 100%) !important;
    border-color: rgba(255, 182, 185, 0.5) !important;
    box-shadow: 0 6px 20px rgba(255, 182, 185, 0.4) !important;
    transform: translateY(-2px);
}

.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, #ff9699 0%, #ff5e93 100%) !important;
    border-color: rgba(255, 182, 185, 0.6) !important;
    box-shadow: 0 2px 10px rgba(255, 182, 185, 0.5) !important;
}

/* Forgot password link - Pembe tema */
a[href*="ForgotPassword"], 
.forgot-password-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 182, 185, 0.6);
}

a[href*="ForgotPassword"]:hover,
.forgot-password-link:hover {
    color: #ffffff !important;
    text-decoration-color: var(--primary-pink);
}

/* Input fields - Pembe tema */
.form-control {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 2px solid rgba(255, 182, 185, 0.8) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 182, 185, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-text-fill-color: #ffffff !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 182, 185, 1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 182, 185, 0.25) !important;
    backdrop-filter: blur(20px) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 35px rgba(255, 255, 255, 0.4) !important;
    -webkit-text-fill-color: #ffffff !important;
}

.form-control::placeholder {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7), 0 0 12px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2) !important;
    -webkit-text-fill-color: #ffffff !important;
}

.form-control:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 182, 185, 0.9) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 182, 185, 0.2) !important;
    backdrop-filter: blur(18px) !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.3) !important;
}

.form-control:active,
.form-control:focus-within {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 182, 185, 0.6) !important;
    box-shadow: 0 0 0 2px rgba(255, 182, 185, 0.15) !important;
}

/* Doldurulmuş form alanları için */
.form-control:not(:placeholder-shown) {
    background: rgba(255, 255, 255, 0.28) !important;
    border-color: rgba(255, 182, 185, 0.85) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 22px rgba(255, 182, 185, 0.18) !important;
    backdrop-filter: blur(16px) !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.3) !important;
}

/* ================================ */
/* GLOBAL GLASSMORPHISM CARD SYSTEM */
/* ================================ */

/* Ana Container - Tüm modüller için */
.glass-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header - Başlık ve kontroller için */
.glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.glass-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.glass-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* İçerik Grid Sistemi */
.glass-content {
    display: grid;
    gap: 30px;
    min-height: 700px;
}

.glass-content.two-column {
    grid-template-columns: 1fr 350px;
}

.glass-content.three-column {
    grid-template-columns: 1fr 1fr 350px;
}

.glass-content.single-column {
    grid-template-columns: 1fr;
}

/* Ana İçerik Alanı */
.glass-main {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 600px;
}

/* Sidebar */
.glass-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Kart Sistemi */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.glass-card.show {
    animation: slideInGlass 0.3s ease;
}

@keyframes slideInGlass {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kart Başlıkları */
.glass-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ================================ */
/* GLOBAL FORM SYSTEM */
/* ================================ */

/* Form Container */
.glass-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form Group */
.glass-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Form Label */
.glass-form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Form Row - İki sütun */
.glass-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.glass-form-row .glass-form-group {
    min-width: 0;
}

/* Form Row - Üç sütun */
.glass-form-row.three-column {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Form Row - Dört sütun */
.glass-form-row.four-column {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* Checkbox Group */
.glass-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.glass-checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

/* ================================ */
/* GLOBAL BUTTON SYSTEM */
/* ================================ */

/* Ana Button */
.glass-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.glass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

/* Minimal Button */
.glass-btn-minimal {
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    min-width: 70px;
    height: 28px;
}

.glass-btn-minimal:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* Secondary Button */
.glass-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Success Button */
.glass-btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.glass-btn-success:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Danger Button */
.glass-btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.glass-btn-danger:hover {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Warning Button */
.glass-btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.glass-btn-warning:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* ================================ */
/* GLOBAL LIST SYSTEM */
/* ================================ */

/* Liste Container */
.glass-list {
    max-height: 300px;
    overflow-y: auto;
}

/* Liste Öğesi */
.glass-list-item {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 4px solid;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Liste Öğesi Başlık */
.glass-list-title {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

/* Liste Öğesi Alt Başlık */
.glass-list-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Liste Öğesi Açıklama */
.glass-list-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* ================================ */
/* PRIORITY & STATUS CLASSES */
/* ================================ */

/* Priority Colors */
.priority-high { border-left-color: #ef4444; }
.priority-medium { border-left-color: #f59e0b; }
.priority-low { border-left-color: #10b981; }
.priority-urgent { border-left-color: #dc2626; }

/* Status Colors */
.status-scheduled { background: rgba(59, 130, 246, 0.1); }
.status-confirmed { background: rgba(16, 185, 129, 0.1); }
.status-inprogress { background: rgba(245, 158, 11, 0.1); }
.status-completed { background: rgba(16, 185, 129, 0.1); }
.status-cancelled { background: rgba(239, 68, 68, 0.1); }
.status-noshow { background: rgba(107, 114, 128, 0.1); }
.status-active { background: rgba(16, 185, 129, 0.1); }
.status-inactive { background: rgba(107, 114, 128, 0.1); }
.status-pending { background: rgba(245, 158, 11, 0.1); }

/* ================================ */
/* RESPONSIVE DESIGN */
/* ================================ */

@media (max-width: 768px) {
    .glass-content.two-column,
    .glass-content.three-column {
        grid-template-columns: 1fr;
    }
    
    .glass-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .glass-controls {
        justify-content: center;
    }
    
    .glass-form-row,
    .glass-form-row.three-column,
    .glass-form-row.four-column {
        grid-template-columns: 1fr;
    }
    
    .glass-container {
        margin: 10px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .glass-title {
        font-size: 1.5rem;
    }
    
    .glass-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .glass-content {
        min-height: 500px;
    }
    
    .glass-main {
        min-height: 400px;
    }
}