* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b6cb0 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Sayfanın Tamamında Yanıp Sönen Işık Efekti */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pageFlash 2s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(229, 62, 62, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(49, 130, 206, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(229, 62, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(49, 130, 206, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pageFlashReverse 2.5s ease-in-out infinite;
    opacity: 0;
}

@keyframes pageFlash {
    0%, 100% {
        opacity: 0.3;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.3);
    }
}

@keyframes pageFlashReverse {
    0%, 100% {
        opacity: 0;
    }
    25% {
        opacity: 0.6;
        filter: brightness(1.2);
    }
    50% {
        opacity: 0.3;
        filter: brightness(1);
    }
    75% {
        opacity: 0.7;
        filter: brightness(1.25);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hidden {
    display: none !important;
}

/* Ana Giriş Ekranı - Modern Tarz Tasarım */
.welcome-screen {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 60px 50px 50px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatCard 8s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Kutucuk İçi İnce Işık Efektleri */
.welcome-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(229, 62, 62, 0.1) 0%,
        rgba(49, 130, 206, 0.1) 30%,
        transparent 70%
    );
    animation: rotateLight 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.welcome-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(49, 130, 206, 0.1) 0%,
        rgba(229, 62, 62, 0.1) 30%,
        transparent 70%
    );
    animation: rotateLightReverse 10s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateLight {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateLightReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* İçerik z-index'i artır */
.welcome-screen h1,
.welcome-screen p,
.welcome-screen button {
    position: relative;
    z-index: 10;
}

/* Logo Container */
.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medical-icon {
    font-size: 4rem;
    color: #2a5298;
    position: relative;
    z-index: 2;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(42, 82, 152, 0.3));
}

.pulse-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(42, 82, 152, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.title-main {
    font-size: 4.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 30%, #3b6cb0 60%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(42, 82, 152, 0.2);
    animation: titleGlow 4s ease-in-out infinite;
}

.title-accent {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -5px;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.15);
    }
}

.main-title::after {
    content: '⚕';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    opacity: 0.3;
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 45px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Özellikler Önizleme */
.features-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 10;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    min-width: 100px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(42, 82, 152, 0.3);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-text {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.system-login-btn {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 16px;
    box-shadow: 
        0 8px 20px rgba(42, 82, 152, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

.system-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 30px rgba(42, 82, 152, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.system-login-btn:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.system-login-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.system-login-btn {
    color: white;
    border: none;
    padding: 18px 55px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(42, 82, 152, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.system-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(42, 82, 152, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
}

.system-login-btn:active {
    transform: translateY(-1px);
}

/* Giriş Seçenekleri Sayfası */
.login-options {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 50px 45px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 950px;
    position: relative;
    overflow: hidden;
}

.login-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
}

.page-title {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b6cb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.option-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    padding: 45px 25px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-card:hover::before {
    transform: scaleX(1);
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(42, 82, 152, 0.2));
    transition: transform 0.3s ease;
}

.option-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.option-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Birimler Sayfası */
.units-page {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 1250px;
    position: relative;
    overflow: hidden;
}

.units-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
}

.content-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.1);
    border: 2px dashed #ced4da;
    color: #6c757d;
    font-size: 18px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-placeholder p {
    margin: 0;
    color: #495057;
    font-weight: 500;
}

/* Kutucuk Yönetimi Stilleri */
.add-card-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.add-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.add-card-btn:active {
    transform: translateY(0);
}

.admin-editable-card {
    position: relative;
}

.card-edit-menu {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.admin-editable-card:hover .card-edit-menu {
    opacity: 1;
}

.card-edit-btn,
.card-delete-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card-edit-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: scale(1.1);
}

.card-delete-btn:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: scale(1.1);
}

.card-edit-btn:active,
.card-delete-btn:active {
    transform: scale(0.95);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 35px;
}

/* Arama Kutusu */
.search-container {
    position: relative;
    margin: 30px 0;
    max-width: 600px;
}

.station-search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.08);
}

.station-search-input:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.15);
    background: #ffffff;
}

.station-search-input::placeholder {
    color: #a0aec0;
}

.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
    color: #2a5298;
    opacity: 0.6;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #718096;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px dashed #ced4da;
}

/* Teknik Donanım İstasyon Grid */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.region-header {
    grid-column: 1 / -1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a5298;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #2a5298;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.region-header:first-child {
    margin-top: 0;
}

.tech-station-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    padding: 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-station-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-station-card:hover::before {
    transform: scaleX(1);
}

.tech-station-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.station-card-header {
    margin-bottom: 12px;
}

.station-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.station-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.station-plate {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.3);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .search-container {
        margin: 20px 0;
    }
    
    .station-search-input {
        padding: 14px 45px 14px 18px;
        font-size: 0.95rem;
    }
    
    .search-icon {
        right: 15px;
        font-size: 1.1rem;
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .region-header {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }
    
    .tech-station-card {
        padding: 16px;
    }
    
    .station-card-header h3 {
        font-size: 1rem;
    }
    
    .station-plate {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .no-results {
        padding: 40px 15px;
        font-size: 1rem;
    }
}

/* İstasyon Detay Sayfası */
.vehicles-list-container {
    margin: 30px 0;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.tech-vehicles-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.tech-vehicle-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
}

.vehicle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.vehicle-card-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
    margin: 0;
}


.vehicle-card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vehicle-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.info-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.info-value {
    color: #2a5298;
    font-weight: 500;
    font-size: 0.95rem;
}

.plate-value {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vehicle-actions {
    margin-top: 10px;
}


.no-vehicles {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #718096;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px dashed #ced4da;
}


/* İstasyon Raporlama Stilleri */
.station-report-section {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.08);
}

.tech-station-report {
    margin-top: 20px;
}

.station-report-summary {
    margin-bottom: 30px;
}

.report-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.report-summary-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.report-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.report-summary-card.var {
    border-left: 4px solid #4caf50;
}

.report-summary-card.arizali {
    border-left: 4px solid #ff9800;
}

.report-summary-card.yok {
    border-left: 4px solid #f44336;
}

.report-summary-card.hasarlı {
    border-left: 4px solid #ff9800;
}

.summary-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f4ff;
}

.report-summary-card.var .summary-icon {
    background: #e8f5e9;
    color: #4caf50;
}

.report-summary-card.arizali .summary-icon {
    background: #fff3e0;
    color: #ff9800;
}

.report-summary-card.yok .summary-icon {
    background: #ffebee;
    color: #f44336;
}

.report-summary-card.hasarlı .summary-icon {
    background: #fff3e0;
    color: #ff9800;
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 3px;
}

.summary-percentage {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
}

.report-total {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
}

.station-report-categories {
    margin-top: 30px;
}

.categories-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-report-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #2a5298;
}

.category-name {
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1rem;
}

.category-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.stat-item {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.var-stat {
    background: #e8f5e9;
    color: #2e7d32;
}

.arizali-stat {
    background: #fff3e0;
    color: #e65100;
}

.yok-stat {
    background: #ffebee;
    color: #c62828;
}

.hasarlı-stat {
    background: #fff3e0;
    color: #e65100;
}

.category-total {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 5px;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #718096;
    font-size: 1rem;
}

/* Yönetici Detaylı Rapor Stilleri */
.detailed-report-content {
    margin-top: 20px;
}

.detailed-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.detailed-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(42, 82, 152, 0.1);
    border: 2px solid #e2e8f0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
}

.stat-sub-label {
    font-size: 0.75rem;
    color: #a0aec0;
    font-weight: 500;
    margin-top: 2px;
    font-style: italic;
}

.panelvan-list {
    margin-top: 12px;
}

.panelvan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: rgba(42, 82, 152, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(42, 82, 152, 0.1);
}

.panelvan-station {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.panelvan-plate {
    font-size: 0.85rem;
    color: #718096;
    margin: 0 12px;
    font-family: monospace;
}

.panelvan-status {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.panelvan-status.delivered {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.panelvan-status.pending {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.more-info {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 8px;
    font-style: italic;
}

.detailed-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.status-card {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.status-card:hover {
    transform: translateY(-3px);
}

.var-card {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.arizali-card {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

.yok-card {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
}

.hasarlı-card {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

.status-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.status-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.95;
}

.status-percentage {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stations-report-list {
    margin-top: 25px;
}

.station-report-row {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 15px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #2a5298;
}

.station-name-col {
    font-weight: 600;
    color: #1e3c72;
    font-size: 0.95rem;
}

.station-stats-col {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-stat {
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mini-stat.var {
    background: #e8f5e9;
    color: #2e7d32;
}

.mini-stat.arizali {
    background: #fff3e0;
    color: #e65100;
}

.mini-stat.yok {
    background: #ffebee;
    color: #c62828;
}

.mini-stat.hasarlı {
    background: #fff3e0;
    color: #e65100;
}

.station-total-col {
    text-align: right;
    font-weight: 600;
    color: #2a5298;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .report-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detailed-status-grid {
        grid-template-columns: 1fr;
    }
    
    .station-report-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .station-total-col {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .tech-vehicles-list {
        grid-template-columns: 1fr;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .vehicle-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.unit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    padding: 28px 22px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.unit-card:hover::before {
    transform: scaleX(1);
}

.unit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.unit-number {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
    transition: all 0.3s ease;
}

.unit-card:hover .unit-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 18px rgba(42, 82, 152, 0.4);
}

.unit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 12px;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* Kutucuk uyarı badge'i */
.card-alert-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
    animation: pulse-badge 2s infinite;
    z-index: 10;
}

.card-alert-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(244, 67, 54, 0.3);
    animation: ripple 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Giriş Formu */
.login-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 55px 50px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 520px;
    position: relative;
    overflow: hidden;
}

.login-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}

.form-group input {
    padding: 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #2d3748;
}

.form-group input:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 4px rgba(42, 82, 152, 0.1), 0 4px 12px rgba(42, 82, 152, 0.08);
    background: #ffffff;
}

.form-group input:hover {
    border-color: #cbd5e0;
}

.login-btn {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(42, 82, 152, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(42, 82, 152, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
}

.back-btn {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 13px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
}

/* Container içindeki geri tuşları için */
.container .back-btn {
    top: 20px;
    left: 20px;
}

/* Login options, login form container, units page içindeki geri tuşları */
.login-options .back-btn,
.login-form-container .back-btn,
.units-page .back-btn {
    top: 20px;
    left: 20px;
}

/* Chat ve task sayfaları içindeki geri tuşları units-page içinde olduğu için */
.units-page {
    padding-top: 80px; /* Geri tuşu için yer aç */
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .back-btn {
        top: 10px;
        left: 10px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .units-page {
        padding-top: 70px;
    }
}

.back-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Oksijen Envanter Sayfası */
.inventory-page {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 1450px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.inventory-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
}

.inventory-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}

.inventory-form-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%) 1;
    letter-spacing: -0.3px;
}

.inventory-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.form-row label {
    min-width: 150px;
}

.form-row input[type="file"] {
    flex: 1;
    min-width: 200px;
}

.form-row label {
    font-weight: 600;
    color: #555;
    min-width: 150px;
    font-size: 0.95rem;
}

.form-row input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-row input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row input[type="file"] {
    padding: 8px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
}

.form-row input[type="file"]:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.image-preview {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.image-preview img {
    display: block;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-required-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.inventory-category {
    background: white;
    padding: 24px;
    border-radius: 14px;
    border-left: 5px solid;
    border-image: linear-gradient(180deg, #2a5298 0%, #3b6cb0 100%) 1;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.08);
    transition: all 0.3s ease;
}

.inventory-category:hover {
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.12);
    transform: translateX(2px);
}

.inventory-category h4 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 600;
}

.save-btn {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(42, 82, 152, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-top: 12px;
    letter-spacing: 0.3px;
}

.save-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(42, 82, 152, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
}

.inventory-report-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.total-inventory-box {
    background: white;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    border-left: 5px solid;
    border-image: linear-gradient(180deg, #2a5298 0%, #3b6cb0 100%) 1;
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.1);
}

.total-inventory-box h4 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    font-size: 1.3rem;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.total-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.total-item.total-summary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.3);
}

.total-label {
    font-weight: 600;
    color: #555;
}

.total-item.total-summary .total-label {
    color: white;
}

.total-value {
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

.total-item.total-summary .total-value {
    color: white;
    font-size: 1.3rem;
}

.month-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.month-btn {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.25);
}

.month-btn:hover {
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(42, 82, 152, 0.35);
}

.month-display {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.monthly-calendar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
}

.calendar-week-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-day-header {
    text-align: center;
    font-weight: bold;
    color: #667eea;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 5px;
}

.calendar-day {
    min-height: 100px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day.empty {
    background: #f8f9fa;
    border: none;
}

.calendar-day.has-data {
    background: #e8f4f8;
    border-color: #667eea;
}

.calendar-day:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.day-number {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 1rem;
}

.day-info {
    font-size: 0.75rem;
    color: #555;
}

.info-item {
    margin: 3px 0;
    padding: 2px 0;
}

.info-item strong {
    color: #667eea;
}

.info-item.total-tubes {
    background: #667eea;
    color: white;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 5px;
    text-align: center;
}

.info-item.total-tubes strong {
    color: white;
}

.expandable-item {
    cursor: pointer;
    user-select: none;
}

.expandable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    transition: background-color 0.2s;
}

.expandable-header:hover {
    background-color: #e8f4f8;
    border-radius: 3px;
}

.expand-icon {
    font-size: 10px;
    color: #2a5298;
    transition: transform 0.2s;
}

.expandable-details {
    margin-top: 5px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .inventory-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .welcome-screen {
        padding: 40px 30px 35px;
        border-radius: 30px;
        max-width: 95%;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    
    .medical-icon {
        font-size: 3rem;
    }
    
    .pulse-ring {
        width: 100px;
        height: 100px;
    }
    
    .title-main {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .title-accent {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .system-login-btn {
        padding: 14px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .option-cards {
        grid-template-columns: 1fr;
    }
    
    .units-grid {
        grid-template-columns: 1fr;
    }
    
    .login-form-container {
        padding: 30px 20px;
    }
    
    .inventory-page {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-row label {
        min-width: auto;
    }
    
    .form-row input {
        width: 100%;
    }
    
    .calendar-day {
        min-height: 80px;
        font-size: 0.7rem;
    }
    
    .day-info {
        font-size: 0.65rem;
    }
}

/* Araç Filosu Takip Sayfası */
.fleet-page {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 1450px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.fleet-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
}

.fleet-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.station-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.fleet-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fleet-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fleet-form label {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.fleet-form input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fleet-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.vehicle-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid;
}

.vehicle-card.ready {
    border-left-color: #28a745;
}

.vehicle-card.broken {
    border-left-color: #dc3545;
}

.vehicle-card.special {
    border-left-color: #9c27b0;
}

.vehicle-card.broken-special {
    border-left-color: #ff5722;
}

.backup-vehicles-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.backup-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.vehicle-list {
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

/* Özel Donanımlı Araçlar Bölümü */
.special-vehicles-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.1);
    border: 1px solid rgba(42, 82, 152, 0.1);
}

.special-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.special-vehicle-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.1);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #2a5298 0%, #3b6cb0 100%) 1;
    transition: all 0.3s ease;
}

.special-vehicle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.2);
}

.special-vehicle-card.broken-special-card {
    border-left-color: #ff5722;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.special-vehicle-card.broken-special-card:hover {
    box-shadow: 0 4px 16px rgba(255, 87, 34, 0.2);
}

.special-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.special-vehicle-list {
    min-height: 150px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.special-vehicle-list::-webkit-scrollbar {
    width: 6px;
}

.special-vehicle-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.special-vehicle-list::-webkit-scrollbar-thumb {
    background: #2a5298;
    border-radius: 10px;
}

.special-vehicle-list::-webkit-scrollbar-thumb:hover {
    background: #3b6cb0;
}

.special-vehicle-item {
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #2a5298;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-vehicle-item:hover {
    background: #f0f4ff;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.1);
}

.special-vehicle-item.clickable-vehicle {
    cursor: pointer;
}

.special-vehicle-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.special-vehicle-details strong {
    color: #2d3748;
    font-size: 0.95rem;
    font-weight: 600;
}

.vehicle-type {
    color: #6c757d;
    font-size: 0.85rem;
    font-style: italic;
}

.vehicle-category-header {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-category-header:first-child {
    margin-top: 0;
}

.empty-message {
    color: #999;
    text-align: center;
    padding: 20px;
    font-style: italic;
}

.vehicle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    background: #f0f0f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.vehicle-item:hover {
    background: #e0e0e0;
    transform: translateX(5px);
}

.vehicle-item.clickable-vehicle {
    cursor: pointer;
}

.vehicle-item.clickable-vehicle:hover {
    background: #d0e8ff;
    border: 2px solid #667eea;
}

.vehicle-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-icon-btn {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.25);
}

.action-icon-btn:hover {
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.35);
}

.action-icon-btn.active-icon {
    background: #28a745;
}

.action-icon-btn.active-icon:hover {
    background: #20c997;
}

.vehicle-details {
    flex: 1;
}

.vehicle-details strong {
    display: block;
    color: #333;
    margin-bottom: 4px;
}

.vehicle-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.add-vehicle-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.add-vehicle-form input,
.add-vehicle-form textarea {
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.add-vehicle-form input:focus,
.add-vehicle-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.add-vehicle-form textarea {
    resize: vertical;
    min-height: 60px;
}

.add-btn {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.25);
}

.add-btn:hover {
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(42, 82, 152, 0.35);
}

.stations-list-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.stations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.region-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.region-header:first-child {
    margin-top: 0;
}

.stations-grid::-webkit-scrollbar {
    width: 8px;
}

.stations-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.stations-grid::-webkit-scrollbar-thumb {
    background: #2a5298;
    border-radius: 10px;
}

.stations-grid::-webkit-scrollbar-thumb:hover {
    background: #3b6cb0;
}

/* Filo Raporlama Alanı */
.fleet-report-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.1);
    border: 1px solid rgba(42, 82, 152, 0.1);
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.report-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.1);
    border-left: 4px solid #2a5298;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.2);
}

.report-section {
    margin-bottom: 30px;
}

.report-details {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-text:last-child {
    margin-bottom: 0;
}

/* A.S.H.İ. Raporlama Özeti - Geliştirilmiş Stiller */
#manager-ashi-container .report-grid-enhanced,
.report-grid-enhanced {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin-top: 24px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.report-grid-enhanced > *,
#manager-ashi-container .report-grid-enhanced > * {
    min-width: 0;
    box-sizing: border-box;
}

.report-card-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12);
    border: 1px solid rgba(42, 82, 152, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
}

.report-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a5298, #4a7bc8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.report-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(42, 82, 152, 0.2);
    border-color: rgba(42, 82, 152, 0.3);
}

.report-card-enhanced:hover::before {
    opacity: 1;
}

.tech-report-card::before {
    background: linear-gradient(90deg, #2196F3, #42A5F5);
}

.drug-report-card::before {
    background: linear-gradient(90deg, #9C27B0, #BA68C8);
}

.quality-report-card::before {
    background: linear-gradient(90deg, #FF9800, #FFB74D);
}

.report-card-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(42, 82, 152, 0.02) 100%);
    border-bottom: 1px solid rgba(42, 82, 152, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.report-icon-enhanced {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.report-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a5298;
    flex: 1;
}

.report-card-body {
    padding: 24px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    color: #718096;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loading-spinner::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-top-color: #2a5298;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Teknik Donanım Raporu İçeriği */
.tech-report-summary {
    width: 100%;
}

.summary-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.summary-stat-item {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(42, 82, 152, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(42, 82, 152, 0.1);
    transition: all 0.3s ease;
}

.summary-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
}

.summary-stat-item.highlight-stat {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.2);
}

.stat-value-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2a5298;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label-small {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.status-badge {
    flex: 1;
    min-width: 140px;
    padding: 14px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 2px solid;
    transition: all 0.3s ease;
}

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

.status-badge-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.3);
}

.status-badge-warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: rgba(255, 152, 0, 0.3);
}

.status-badge-danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
    border-color: rgba(244, 67, 54, 0.3);
}

.badge-icon {
    font-size: 24px;
    line-height: 1;
}

.badge-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-percentage {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 2px;
}

.overall-status {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(42, 82, 152, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid;
    margin-top: 16px;
}

.status-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.status-description {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

/* Placeholder Stilleri */
.report-placeholder {
    text-align: center;
    padding: 20px;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.placeholder-description {
    font-size: 0.85rem;
    color: #718096;
}

/* Detaylı Rapor Bölümü */
.report-details-enhanced {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.1);
    border: 1px solid rgba(42, 82, 152, 0.1);
}

.details-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(42, 82, 152, 0.1);
}

.details-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2a5298;
    margin: 0;
}

.details-content {
    line-height: 1.8;
}

.info-text-enhanced {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-text-enhanced:last-child {
    margin-bottom: 0;
}

/* Detaylı Rapor Bölümü - Geliştirilmiş Stiller */
.detailed-report-wrapper {
    width: 100%;
}

.detailed-report-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(42, 82, 152, 0.1);
}

.detailed-stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.detailed-stat-card-enhanced {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.08) 0%, rgba(42, 82, 152, 0.03) 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(42, 82, 152, 0.15);
    transition: all 0.3s ease;
}

.detailed-stat-card-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(42, 82, 152, 0.2);
    border-color: rgba(42, 82, 152, 0.3);
}

.detailed-stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.detailed-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2a5298;
    line-height: 1.2;
    margin-bottom: 6px;
}

.detailed-stat-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detailed-status-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.status-card-enhanced {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.status-card-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.var-card-enhanced {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.4);
}

.arizali-card-enhanced {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: rgba(255, 152, 0, 0.4);
}

.yok-card-enhanced {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
    border-color: rgba(244, 67, 54, 0.4);
}

.hasarlı-card-enhanced {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: rgba(255, 152, 0, 0.4);
}

.status-icon-enhanced {
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1;
}

.status-number-enhanced {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 6px;
}

.status-label-enhanced {
    font-size: 0.8rem;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.status-percentage-enhanced {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 4px;
}

/* İstasyon Bazında Rapor Bölümü */
.stations-report-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid rgba(42, 82, 152, 0.1);
}

.stations-report-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 16px;
    padding: 8px 0;
}

.stations-report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.station-report-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(42, 82, 152, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.station-report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.25);
}

.station-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(42, 82, 152, 0.1);
}

.station-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.station-total-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #718096;
    background: rgba(42, 82, 152, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.station-report-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.station-stat-item {
    flex: 1;
    min-width: 100px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-var {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.stat-arizali {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.stat-yok {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.stat-hasarlı {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.station-stat-item .stat-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.75rem;
}

.station-stat-item .stat-value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.85rem;
}

.station-report-footer {
    padding: 8px 12px;
    background: rgba(42, 82, 152, 0.05);
    border-radius: 8px;
    border-left: 3px solid;
    margin-top: 10px;
}

.station-status-percentage {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: block;
}

/* Responsive Tasarım */
@media (max-width: 1400px) {
    #manager-ashi-container .report-grid-enhanced,
    .report-grid-enhanced {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 992px) {
    #manager-ashi-container .report-grid-enhanced,
    .report-grid-enhanced {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    #manager-ashi-container .report-grid-enhanced,
    .report-grid-enhanced {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .summary-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .status-badges-container {
        flex-direction: column;
    }
    
    .status-badge {
        min-width: 100%;
    }
    
    .stat-value-large {
        font-size: 1.5rem;
    }
    
    .detailed-stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .detailed-status-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stations-report-grid {
        grid-template-columns: 1fr;
    }
}

/* A.S.H.İ. İstasyon Listesi Stilleri */
.stations-list-section {
    margin-top: 40px;
    margin-bottom: 32px;
}

.stations-list-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12);
    border: 1px solid rgba(42, 82, 152, 0.1);
    max-height: 600px;
    overflow-y: auto;
}

.stations-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.station-row {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(42, 82, 152, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.station-row-even {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.station-row-odd {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
}

.station-row:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.2);
    border-color: rgba(42, 82, 152, 0.3);
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(42, 82, 152, 0.02) 100%);
}

.station-row-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.station-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.station-icon {
    font-size: 20px;
    line-height: 1;
}

.station-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.station-row-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.station-stats-mini {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-mini {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.var-mini {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.arizali-mini {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.yok-mini {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.station-percentage {
    font-size: 1rem;
    font-weight: 700;
    min-width: 80px;
    text-align: right;
}

.station-arrow {
    font-size: 1.25rem;
    color: #2a5298;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.station-row:hover .station-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.no-stations {
    text-align: center;
    color: #718096;
    padding: 40px 20px;
    font-size: 1rem;
}

/* İstasyon Detaylı Rapor Stilleri */
.station-detailed-report {
    width: 100%;
}

.station-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(42, 82, 152, 0.1);
}

.station-name-detail {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2a5298;
    margin: 0;
}

.station-status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid;
}

.station-summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.station-summary-item {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(42, 82, 152, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(42, 82, 152, 0.1);
}

.station-summary-item.highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.2);
}

.summary-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2a5298;
    line-height: 1.2;
    margin-bottom: 6px;
}

.summary-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.station-status-badges-detailed {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.status-badge-detailed {
    flex: 1;
    min-width: 140px;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.status-badge-detailed:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.status-badge-detailed.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.3);
}

.status-badge-detailed.warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: rgba(255, 152, 0, 0.3);
}

.status-badge-detailed.danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
    border-color: rgba(244, 67, 54, 0.3);
}

.badge-icon-detailed {
    font-size: 24px;
    line-height: 1;
}

.badge-value-detailed {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.badge-label-detailed {
    font-size: 0.75rem;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-percentage-detailed {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 2px;
}

/* Kategori Bazında Rapor Stilleri */
.station-categories-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid rgba(42, 82, 152, 0.1);
}

.categories-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 16px;
    padding: 8px 0;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item-detailed {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(42, 82, 152, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.category-item-detailed:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.25);
}

.category-header-detailed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(42, 82, 152, 0.1);
}

.category-name-detailed {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.category-total-detailed {
    font-size: 0.75rem;
    font-weight: 600;
    color: #718096;
    background: rgba(42, 82, 152, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.category-stats-detailed {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-stat {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.var-stat-detailed {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.arizali-stat-detailed {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.yok-stat-detailed {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.hasarlı-stat-detailed {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.error-message {
    text-align: center;
    color: #f44336;
    padding: 20px;
    font-size: 1rem;
}

/* Responsive Tasarım - İstasyon Listesi */
@media (max-width: 768px) {
    .station-row-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .station-row-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .station-stats-mini {
        flex-wrap: wrap;
    }
    
    .station-summary-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .status-badge-detailed {
        min-width: 100%;
    }
}

/* Sohbet Sayfası Stilleri */
.chat-page {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    height: 600px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.1);
}

.chat-sidebar {
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

.chat-sidebar h3 {
    margin-bottom: 15px;
    color: #1e3c72;
    font-size: 1.1rem;
}

.chat-units-list {
    max-height: 500px;
    overflow-y: auto;
}

.chat-unit-item {
    padding: 12px;
    margin-bottom: 8px;
    background: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-unit-item:hover {
    background: #e8f4ff;
    transform: translateX(5px);
}

.chat-unit-item.active {
    background: #2a5298;
    color: white;
}

.chat-main {
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.chat-header h3 {
    color: #1e3c72;
    font-size: 1.2rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    max-height: 400px;
}

.chat-message {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    max-width: 70%;
}

.chat-message.sent {
    background: #2a5298;
    color: white;
    margin-left: auto;
    text-align: right;
}

.chat-message.received {
    background: #e8f4ff;
    color: #1e3c72;
}

.message-sender {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.message-text {
    margin-bottom: 5px;
    line-height: 1.5;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
}

.chat-input-area {
    display: flex;
    gap: 10px;
}

.chat-input-area textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    resize: none;
}

.send-btn {
    padding: 12px 24px;
    background: #2a5298;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #1e3c72;
    transform: scale(1.05);
}

.chat-page-simple {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.1);
    height: 600px;
    display: flex;
    flex-direction: column;
}

/* Görev Sayfası Stilleri */
.task-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.1);
}

.task-form-section, .task-list-section {
    padding: 20px;
}

.task-form-section h3, .task-list-section h3 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.task-list {
    max-height: 500px;
    overflow-y: auto;
}

.task-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #2a5298;
}

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

.task-header h4 {
    color: #1e3c72;
    font-size: 1.1rem;
}

.task-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: #ff9800;
    color: white;
}

.status-seen {
    background: #2196f3;
    color: white;
}

.status-completed {
    background: #4caf50;
    color: white;
}

.status-verified {
    background: #9c27b0;
    color: white;
}

.task-info {
    color: #555;
    line-height: 1.6;
}

.task-info p {
    margin-bottom: 8px;
}

.task-overdue {
    border-left-color: #f44336 !important;
}

.task-overdue-badge {
    background: #f44336;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.task-seen-btn, .task-complete-btn {
    padding: 8px 16px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.task-seen-btn {
    background: #2196f3;
    color: white;
}

.task-complete-btn {
    background: #4caf50;
    color: white;
}

.task-seen-btn:hover, .task-complete-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.task-completed-info, .task-verified-info {
    margin-top: 10px;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 6px;
    color: #2e7d32;
}

.task-page-simple {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.1);
    min-height: 400px;
}

.notification-badge {
    display: inline-block;
    background: #f44336;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .chat-page {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .chat-sidebar {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .task-page {
        grid-template-columns: 1fr;
    }
}

.report-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    flex-shrink: 0;
}

.report-icon.warning {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
}

.report-icon.error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.report-icon.info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.report-content {
    flex: 1;
    min-width: 0;
}

.report-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.report-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    white-space: pre-line;
    text-align: center;
}

.report-percentage {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    margin-top: 4px;
}

.report-subsection {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(42, 82, 152, 0.1);
}

.subsection-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subsection-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #2a5298 0%, #3b6cb0 100%);
    border-radius: 2px;
}

.report-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.report-card-small {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(42, 82, 152, 0.08);
    border-left: 3px solid #2a5298;
    transition: all 0.3s ease;
}

.report-card-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.15);
}

.report-label-small {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 8px;
}

.report-value-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a5298;
    line-height: 1;
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.regional-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(42, 82, 152, 0.08);
    border-left: 3px solid #3b6cb0;
    transition: all 0.3s ease;
}

.regional-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.15);
}

.regional-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(42, 82, 152, 0.1);
}

.regional-header strong {
    font-size: 1rem;
    color: #2a5298;
    font-weight: 700;
}

.regional-total {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
}

.regional-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.regional-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 600;
}

.stat-value {
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.stat-value.normal {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.stat-value.backup {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.station-card-new {
    background: white;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.1), 0 0 0 1px rgba(42, 82, 152, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #2a5298 0%, #3b6cb0 100%) 1;
    position: relative;
}

.station-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px 50px;
    border-bottom: 1px solid rgba(42, 82, 152, 0.1);
    position: relative;
}

.station-row:last-child {
    border-bottom: none;
}

/* Bölge Renkleri */
.station-card-new.region-ipekyolu {
    background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 100%);
    border-left-color: #2a5298;
}

.station-card-new.region-tusba {
    background: linear-gradient(135deg, #ffffff 0%, #fff4e6 100%);
    border-left-color: #ff9800;
}

.station-card-new.region-edremit {
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
    border-left-color: #4caf50;
}

.station-card-new.region-bahcesaray {
    background: linear-gradient(135deg, #ffffff 0%, #f3e5f5 100%);
    border-left-color: #9c27b0;
}

.station-card-new.region-baskale {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2f1 100%);
    border-left-color: #009688;
}

.station-card-new.region-caldiran {
    background: linear-gradient(135deg, #ffffff 0%, #fff3e0 100%);
    border-left-color: #ff5722;
}

.station-card-new.region-catak {
    background: linear-gradient(135deg, #ffffff 0%, #e1f5fe 100%);
    border-left-color: #00bcd4;
}

.station-card-new.region-ercis {
    background: linear-gradient(135deg, #ffffff 0%, #fce4ec 100%);
    border-left-color: #e91e63;
}

.station-card-new.region-gevas {
    background: linear-gradient(135deg, #ffffff 0%, #e8eaf6 100%);
    border-left-color: #3f51b5;
}

.station-card-new.region-gurpinar {
    background: linear-gradient(135deg, #ffffff 0%, #fff9c4 100%);
    border-left-color: #fbc02d;
}

.station-card-new.region-muradiye {
    background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 100%);
    border-left-color: #00acc1;
}

.station-card-new.region-ozalp {
    background: linear-gradient(135deg, #ffffff 0%, #f1f8e9 100%);
    border-left-color: #8bc34a;
}

.station-card-new.region-saray {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-left-color: #757575;
}

.station-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.12);
}

.station-card-new.has-backup-vehicle {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%) !important;
    border-left-color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.2) !important;
}

.station-name-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    border-radius: 8px;
    font-weight: 600;
    color: #1e3c72;
    font-size: 0.85rem;
    border: 1px solid #e2e8f0;
    line-height: 1.2;
}

.extra-station-badge {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 152, 0, 0.3);
}

.station-row.extra-station-row {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left: 3px solid #ff9800;
    margin-left: 20px;
    border-radius: 0 8px 8px 0;
}

.station-row.extra-station-row .station-name-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #ff9800;
}

.station-vehicle-box {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6e8f5 100%);
    border-radius: 8px;
    color: #2d3748;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #cbd5e0;
    min-height: 36px;
}

.station-special-box {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px dashed #9c27b0;
    min-height: 36px;
}

.station-special-box:hover {
    background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
    border-color: #7b1fa2;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.special-vehicle-text {
    color: #6a1b9a;
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
}

.station-backup-box {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: linear-gradient(135deg, #fffbf0 0%, #fff3cd 100%);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px dashed #ffc107;
    min-height: 36px;
}

.station-backup-box:hover {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-color: #ff9800;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.backup-vehicle-text {
    color: #856404;
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
}

.station-add-extra-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ff9800;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
    flex-shrink: 0;
    position: absolute;
    left: -45px;
    z-index: 10;
}

.station-add-extra-btn:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.5);
}

.station-add-extra-btn-placeholder {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.station-add-row-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    flex-shrink: 0;
    position: absolute;
    right: -45px;
    z-index: 10;
}

.station-add-row-btn:hover {
    background: linear-gradient(135deg, #3b6cb0 0%, #4a7bc8 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
}

.station-add-row-btn-placeholder {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

/* Modal Stilleri */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
}

.available-vehicles-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vehicle-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid;
    border-image: linear-gradient(180deg, #2a5298 0%, #3b6cb0 100%) 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.08);
}

.vehicle-option:hover {
    background: #f0f4ff;
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(42, 82, 152, 0.15);
}

.vehicle-option span {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.select-btn {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.25);
}

.select-btn:hover {
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(42, 82, 152, 0.35);
}

.action-info {
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.active-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.action-btn.active-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #34ce57 0%, #28d9a3 100%);
}

.action-btn.broken-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.action-btn.broken-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #e74c3c 0%, #d63031 100%);
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.stations-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stations-table thead {
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 100%);
    color: white;
}

.stations-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.stations-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.stations-table tbody tr:hover {
    background: #f8f9fa;
}

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

.stations-table td {
    padding: 15px;
    color: #333;
    font-size: 0.95rem;
}

.stations-table td.empty-message {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 30px;
}

.delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.delete-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

/* Admin Butonları */
.admin-edit-btn, .admin-delete-btn, .admin-add-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    margin: 2px;
}

.admin-edit-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.admin-delete-btn {
    background: #dc3545;
}

.admin-delete-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

.admin-add-btn {
    background: #007bff;
}

.admin-add-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.station-admin-actions {
    display: flex;
    gap: 5px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(42, 82, 152, 0.1);
}

.station-row-admin-actions {
    display: flex;
    gap: 5px;
    align-items: center;
}

.vehicle-admin-actions {
    display: flex;
    gap: 5px;
    margin-left: auto;
}

/* Günlük Özet Kutucuğu */
.daily-summary-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.2) 100%);
    border: 2px solid rgba(76, 175, 80, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    min-width: 180px;
}

.daily-summary-box:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(56, 142, 60, 0.3) 100%);
    border-color: rgba(76, 175, 80, 0.8);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.summary-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-count {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

.daily-summary-item {
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4caf50;
    border-radius: 6px;
    transition: all 0.2s ease;
}

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

.daily-summary-item-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.daily-summary-item-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    font-weight: 500;
}

.daily-summary-item-details {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    display: grid;
    gap: 4px;
}

.daily-summary-item-details div {
    display: flex;
    gap: 8px;
}

.daily-summary-item-details strong {
    color: rgba(255, 255, 255, 0.95);
    min-width: 80px;
}

.daily-summary-section {
    margin-bottom: 25px;
}

.daily-summary-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(42, 82, 152, 0.2);
    gap: 10px;
}

.admin-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
}

#admin-fleet-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Responsive - Araç Filosu */
@media (max-width: 1200px) {
    .fleet-content {
        grid-template-columns: 1fr;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fleet-page {
        padding: 20px;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .stations-table {
        font-size: 0.85rem;
    }
    
    .stations-table th,
    .stations-table td {
        padding: 10px 8px;
    }
    
    .total-display {
        grid-template-columns: 1fr;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
        max-height: 500px;
    }
    
    .station-card-new {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }
    
    .station-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .station-name-box,
    .station-vehicle-box,
    .station-backup-box {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .station-add-row-btn,
    .station-add-row-btn-placeholder {
        width: 100%;
        margin-top: 4px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .backup-vehicles-split {
        grid-template-columns: 1fr;
    }
    
    .report-grid {
        grid-template-columns: 1fr;
    }
    
    .report-card {
        padding: 15px;
    }
    
    .report-value {
        font-size: 1.5rem;
    }
    
    .special-vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    @media (min-width: 768px) and (max-width: 1200px) {
        .special-vehicles-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1200px) {
        .special-vehicles-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .special-vehicle-card {
        padding: 15px;
    }
}


.form-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
}

.cancel-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.cancel-btn:hover {
    background: #5a6268;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-actions .save-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.modal-actions .save-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2a5298;
}

.form-group input[type="text"],
.form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 0.85rem;
}


/* Long Press Feedback */
.long-press-active {
    background-color: rgba(42, 82, 152, 0.2) !important;
    transform: scale(0.95);
    transition: all 0.1s;
}

/* Plaka gösterimlerine long press desteği */
.station-vehicle-box,
.station-backup-box,
.station-special-box,
.vehicle-item,
.special-vehicle-item {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}



/* ==================== PANELVAN ENVANTER STİLLERİ ==================== */

.inventory-modal-content {
    max-width: 900px;
    max-height: 90vh;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inventory-modal-content .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    box-sizing: border-box;
    padding: 20px;
}

.inventory-container {
    max-height: 50vh;
    overflow-y: auto;
    padding: 10px;
}

.inventory-list-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.inventory-category {
    margin-bottom: 25px;
}

.inventory-item {
    transition: all 0.3s ease;
}

.inventory-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-icon {
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Yeni Öğe Ekleme Alanı */
.inventory-add-section {
    background: #f8f9fa;
    border: 2px dashed #2196f3;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.inventory-add-header {
    margin-bottom: 15px;
}

.inventory-add-header h4 {
    margin: 0;
    color: #2a5298;
    font-size: 1rem;
    font-weight: 600;
}

.inventory-add-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.inventory-add-select,
.inventory-add-input {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.inventory-add-select:focus,
.inventory-add-input:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.inventory-add-input {
    flex: 1;
    min-width: 0;
}

.inventory-add-btn {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.inventory-add-btn:hover {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

@media (min-width: 768px) {
    .inventory-add-form {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .inventory-add-select {
        min-width: 180px;
        max-width: 200px;
        flex-shrink: 0;
    }
    
    .inventory-add-input {
        flex: 1;
        min-width: 150px;
    }
    
    .inventory-add-btn {
        min-width: 120px;
        max-width: 150px;
        flex-shrink: 0;
    }
}

/* Toast Bildirim */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    min-width: 300px;
    max-width: 500px;
    z-index: 10002;
    display: flex;
    align-items: center;
    animation: slideInRight 0.3s ease-out;
    border-left: 4px solid #2196f3;
}

.toast-notification.hidden {
    display: none;
}

.toast-notification.error {
    border-left-color: #f44336;
    background: #ffebee;
}

.toast-notification.success {
    border-left-color: #4caf50;
    background: #e8f5e9;
}

.toast-notification.warning {
    border-left-color: #ff9800;
    background: #fff3e0;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

@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;
    }
}

/* Sarı Başlıklar - Ana Başlıklar */
.inventory-main-category {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.inventory-main-title {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.inventory-main-title:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.inventory-main-title .title-text {
    flex: 1;
}

.inventory-main-title .title-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inventory-main-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.inventory-main-content.expanded {
    max-height: 5000px;
    padding: 10px;
}

/* Mavi Başlıklar - Alt Başlıklar */
.inventory-sub-category {
    margin-bottom: 10px;
    background: white;
    border-radius: 6px;
    padding: 0;
    border-left: 4px solid #2196F3;
    overflow: hidden;
}

.inventory-sub-title {
    background: linear-gradient(135deg, #90caf9 0%, #64b5f6 100%);
    color: #fff;
    padding: 12px 15px;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.inventory-sub-title:hover {
    background: linear-gradient(135deg, #64b5f6 0%, #90caf9 100%);
}

.inventory-sub-title .title-text {
    flex: 1;
}

.inventory-sub-title .title-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dosya İkonu */
.file-icon {
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    opacity: 0.8;
}

.file-icon:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Silme İkonu */
.delete-icon {
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    opacity: 0.8;
}

.delete-icon:hover {
    opacity: 1;
    background: rgba(244, 67, 54, 0.2);
    transform: scale(1.1);
}

/* Dosya Menüsü */
.file-menu {
    position: fixed;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    min-width: 200px;
    padding: 8px 0;
    border: 1px solid #e0e0e0;
}

.file-menu.hidden {
    display: none;
}

.file-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.file-menu-item:hover {
    background: #f5f5f5;
}

.file-menu-item .menu-icon {
    font-size: 1.2rem;
}

/* Kamera Menüsü */
.camera-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    width: 90%;
    max-width: 600px;
    padding: 20px;
}

.camera-menu.hidden {
    display: none;
}

.camera-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.camera-menu-header h4 {
    margin: 0;
    color: #2a5298;
}

.camera-close-btn {
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: background 0.2s;
}

.camera-close-btn:hover {
    background: #d32f2f;
}

.camera-preview-container {
    width: 100%;
    max-height: 400px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

#camera-preview {
    width: 100%;
    height: auto;
    display: block;
}

.camera-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.camera-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.camera-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.camera-btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}

.camera-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.switch-camera-btn {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    font-size: 1.2rem;
    padding: 12px 16px;
    min-width: 60px;
    flex: 0 0 auto;
}

.switch-camera-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
}

.camera-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#stop-video-btn {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

#stop-video-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
}

/* Ses Kayıt Menüsü */
.audio-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    width: 90%;
    max-width: 400px;
    padding: 20px;
}

.audio-menu.hidden {
    display: none;
}

.audio-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.audio-menu-header h4 {
    margin: 0;
    color: #2a5298;
}

.audio-close-btn {
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: background 0.2s;
}

.audio-close-btn:hover {
    background: #d32f2f;
}

.audio-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.audio-timer {
    font-size: 2rem;
    font-weight: bold;
    color: #2a5298;
    text-align: center;
}

.audio-buttons {
    display: flex;
    gap: 10px;
}

.audio-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.audio-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

#stop-audio-btn {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

#stop-audio-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
}

/* Dosya Kayıtları Modal */
.file-records-modal-content {
    max-width: 800px;
    max-height: 90vh;
}

.file-records-container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
}

.file-record-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.file-record-card:hover {
    background: #e9ecef;
    border-color: #2196f3;
    transform: translateX(5px);
}

.file-record-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.file-record-info {
    flex: 1;
    min-width: 0;
}

.file-record-name {
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 5px;
    word-break: break-word;
}

.file-record-meta {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    gap: 8px;
    align-items: center;
}

.file-record-actions {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.file-action-btn {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.file-action-btn.view-btn:hover {
    background: #e3f2fd;
    border-color: #2196f3;
}

.file-action-btn.download-btn:hover {
    background: #e8f5e9;
    border-color: #4caf50;
}

.file-action-btn.delete-btn:hover {
    background: #ffebee;
    border-color: #f44336;
}

/* Dosya Görüntüleyici Modal */
.file-viewer-modal-content {
    max-width: 90vw;
    max-height: 90vh;
}

#file-viewer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.inventory-sub-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 10px;
}

.inventory-sub-content.expanded {
    max-height: 5000px;
    padding: 10px;
}

/* Renksiz - Alt-Alt Başlıklar */
.inventory-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inventory-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
    color: #333;
    font-size: 0.95rem;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.inventory-item:hover {
    background: #f5f5f5;
}

.inventory-item:last-child {
    border-bottom: none;
}

.inventory-item .item-text {
    flex: 1;
}

.inventory-item .item-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
    margin-left: 10px;
}

/* ==================== GÖREV KONTROL SİSTEMİ STİLLERİ ==================== */

/* Admin Görev Kontrol Sayfası */
.admin-task-control-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.admin-notifications-section,
.admin-tasks-section,
.admin-scores-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.admin-notifications-section h3,
.admin-tasks-section h3,
.admin-scores-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-content p {
    color: #fff;
    margin: 0;
}

.notification-content small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
}

.task-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

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

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.task-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.approve-btn,
.reject-btn,
.view-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.approve-btn {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #fff;
}

.reject-btn {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: #fff;
}

.view-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.approve-btn:hover,
.reject-btn:hover,
.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Puan Sistemi Stilleri */
.unit-score-display {
    margin-bottom: 20px;
}

.score-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.score-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.score-value-large {
    font-size: 3em;
    font-weight: bold;
    margin: 15px 0;
}

.score-card.score-high .score-value-large {
    color: #38ef7d;
}

.score-card.score-medium .score-value-large {
    color: #ffd700;
}

.score-card.score-low .score-value-large {
    color: #eb3349;
}

.score-details {
    display: flex;
    justify-content: space-around;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

.manager-scores-display {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    max-height: 350px;
    overflow-y: auto;
}

.scores-header {
    margin-bottom: 15px;
}

.manager-scores-display h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.scores-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
    margin: 0;
    line-height: 1.4;
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.score-item-small {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s;
}

.score-item-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.score-item-small.score-high {
    border: 2px solid #38ef7d;
}

.score-item-small.score-medium {
    border: 2px solid #ffd700;
}

.score-item-small.score-low {
    border: 2px solid #eb3349;
}

.score-unit-name {
    color: #fff;
    font-size: 0.7em;
    margin-bottom: 5px;
    line-height: 1.2;
    font-weight: 500;
    opacity: 0.9;
}

.score-item-small .score-value {
    font-size: 1.5em;
    font-weight: bold;
}

.score-item-small.score-high .score-value {
    color: #38ef7d;
}

.score-item-small.score-medium .score-value {
    color: #ffd700;
}

.score-item-small.score-low .score-value {
    color: #eb3349;
}

.scores-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.score-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
}

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

.score-header h4 {
    color: #fff;
    margin: 0;
}

.score-value {
    font-size: 1.5em;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 8px;
}

.score-value.score-high {
    background: rgba(56, 239, 125, 0.3);
    color: #38ef7d;
}

.score-value.score-medium {
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.score-value.score-low {
    background: rgba(235, 51, 73, 0.3);
    color: #eb3349;
}

.score-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0;
}

/* Birim Görev Bildirimleri */
.notification-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.notification-banner h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

.notification-banner .notification-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.notification-banner .notification-item:last-child {
    margin-bottom: 0;
}

.task-awaiting-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-left: 10px;
}

.task-response-required {
    background: rgba(245, 87, 108, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.task-warning {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.respond-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.respond-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.task-not-done-btn {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 10px;
}

.task-not-done-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.task-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.status-awaiting {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.status-no-response {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: #fff;
}

/* Birim Sayfası Puan Gösterimi */
.unit-score-display-page {
    margin-bottom: 20px;
}

.unit-score-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.unit-score-card.score-high {
    border-color: #38ef7d;
}

.unit-score-card.score-medium {
    border-color: #ffd700;
}

.unit-score-card.score-low {
    border-color: #eb3349;
}

.score-header-info {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.score-header-info h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.score-value-display {
    font-size: 3em;
    font-weight: bold;
    margin: 10px 0;
}

.score-explanation {
    color: rgba(255, 255, 255, 0.9);
}

.score-explanation h4 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1em;
}

.score-explanation ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.score-explanation li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.score-explanation li:last-child {
    border-bottom: none;
}

.score-explanation li strong {
    color: #fff;
}

.score-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
}

.score-stats span {
    color: rgba(255, 255, 255, 0.8);
}

.score-stats strong {
    color: #fff;
    font-size: 1.1em;
}

/* Modern Puan Kartı Tasarımı */
.unit-score-card-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.unit-score-card-modern.score-high {
    border-color: #38ef7d;
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.3);
}

.unit-score-card-modern.score-medium {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.unit-score-card-modern.score-low {
    border-color: #eb3349;
    box-shadow: 0 0 20px rgba(235, 51, 73, 0.3);
}

.score-main-display {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.score-circle {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.score-circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.score-circle-progress {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.score-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.score-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-info-compact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.score-status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95em;
    text-align: center;
}

.score-status-badge.score-high {
    background: rgba(56, 239, 125, 0.2);
    color: #38ef7d;
    border: 1px solid #38ef7d;
}

.score-status-badge.score-medium {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid #ffd700;
}

.score-status-badge.score-low {
    background: rgba(235, 51, 73, 0.2);
    color: #eb3349;
    border: 1px solid #eb3349;
}

.score-quick-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-icon {
    font-size: 1.5em;
}

.stat-value {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
}

.stat-label {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-details-collapsible {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.score-details-toggle {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-size: 0.95em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.score-details-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.toggle-icon {
    transition: transform 0.3s;
    font-size: 0.8em;
}

.score-details-content {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.score-rules {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.rule-item.positive {
    border-left: 3px solid #38ef7d;
}

.rule-item.neutral {
    border-left: 3px solid #ffd700;
}

.rule-item.negative {
    border-left: 3px solid #eb3349;
}

.rule-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
}

.rule-item.positive .rule-icon {
    background: rgba(56, 239, 125, 0.2);
    color: #38ef7d;
}

.rule-item.neutral .rule-icon {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.rule-item.negative .rule-icon {
    background: rgba(235, 51, 73, 0.2);
    color: #eb3349;
}

.rule-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
    flex: 1;
}

.rule-text strong {
    color: #fff;
}

@media (max-width: 768px) {
    .score-main-display {
        flex-direction: column;
        text-align: center;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score-number {
        font-size: 2em;
    }
}

/* Süpervisor Canlı Raporlama Stilleri */
.supervisor-live-reports {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.report-section-module {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 15px;
    padding: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 82, 152, 0.2);
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.1);
    transition: all 0.3s;
    margin-bottom: 24px;
}

.report-section-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.3);
}

.module-title {
    color: #2a5298;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(42, 82, 152, 0.15);
}

.module-report-content {
    color: #2c3e50;
    min-height: 100px;
}

.module-report-content .loading-spinner {
    text-align: center;
    padding: 20px;
    color: #718096;
    font-size: 0.95rem;
}

.module-report-content .no-data {
    text-align: center;
    padding: 20px;
    color: #718096;
    font-size: 0.95rem;
}

.report-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(42, 82, 152, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(42, 82, 152, 0.02) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.1);
    border-color: rgba(42, 82, 152, 0.2);
}

.stat-icon {
    font-size: 28px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a5298;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.3);
}

.stat-card.highlight .stat-value {
    color: #4caf50;
}

.module-report-content .report-details {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(42, 82, 152, 0.15);
    font-size: 0.9rem;
    color: #4a5568;
}

.module-report-content .report-details p {
    margin: 6px 0;
    line-height: 1.6;
    color: #4a5568;
}

.module-report-content .report-details strong {
    color: #2a5298;
    font-weight: 600;
}

.report-info {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.report-info p {
    margin: 10px 0;
}

.info-note {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.no-data {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    font-style: italic;
}

/* Tüm Araçları Yönet Modal Stilleri */
.vehicle-category-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.vehicles-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.vehicle-item-modal {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    background: white;
    border: 2px solid #e0e0e0;
    font-weight: 600;
}

.vehicle-item-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.2);
    border-color: #2a5298;
}

.vehicle-item-modal.vehicle-used {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #c62828;
}

.vehicle-item-modal.vehicle-used:hover {
    background: #ffcdd2;
    border-color: #d32f2f;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

@media (max-width: 768px) {
    .report-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicles-grid-modal {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .stat-value {
        font-size: 1.5em;
    }
    
    .stat-icon {
        font-size: 1.5em;
    }
}

/* Araç plakası tıklanabilir stil */
.vehicle-plate-clickable {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 2px 4px;
    border-radius: 4px;
    display: inline-block;
}

.vehicle-plate-clickable:hover {
    background-color: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
    transform: scale(1.05);
}

/* Araç ekle ikonu */
.vehicle-add-icon {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    margin-left: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vehicle-add-icon:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

/* Placeholder metni */
.vehicle-placeholder {
    color: #999;
    font-style: italic;
}

/* Kutucuk içinde flex düzeni */
.station-vehicle-box,
.station-backup-box,
.station-special-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.station-vehicle-box span,
.station-backup-box span,
.station-special-box span {
    flex: 1;
    text-align: center;
}

/* Aktif araç kutucukları için */
.vehicle-item,
.special-vehicle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.vehicle-item .vehicle-actions,
.special-vehicle-item .vehicle-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Araç Görsel Yükleme Sistemi Stilleri */
.view-image-btn {
    padding: 4px 8px;
    background: #2196f3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.3s ease;
}

.view-image-btn:hover {
    background: #1976d2;
}

.station-backup-box .view-image-btn,
.station-special-box .view-image-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 10;
}

.station-backup-box,
.station-special-box {
    position: relative;
}

/* Görsel Yükleme Modal Stilleri */
#vehicle-image-upload-modal .modal-content {
    max-width: 500px;
}

#vehicle-image-upload-modal .image-preview {
    margin-top: 15px;
    text-align: center;
}

#vehicle-image-upload-modal .image-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    border: 2px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Görsel Görüntüleme Modal Stilleri */
#vehicle-image-view-modal .modal-content {
    max-width: 90%;
    max-height: 90vh;
}

#vehicle-image-view-modal .modal-body {
    text-align: center;
    padding: 20px;
}

#vehicle-image-view-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    border: 2px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#vehicle-image-details {
    margin-top: 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: left;
}

#vehicle-image-details strong {
    color: #2196f3;
    margin-right: 5px;
}

/* Tüm Görseller Modal Stilleri */
#all-vehicle-images-modal .modal-content {
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

#all-vehicle-images-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

#all-vehicle-images-list img {
    transition: transform 0.2s ease;
}

#all-vehicle-images-list img:hover {
    transform: scale(1.05);
}

/* Kamera ve Dosya Seçme Butonları */
#vehicle-image-upload-modal .form-group button {
    transition: all 0.3s ease;
}

#vehicle-image-upload-modal .form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#vehicle-image-upload-modal .form-group button:active {
    transform: translateY(0);
}



/* İstasyon İstatistikleri Modalı */
.station-stats-modal {
    max-width: 500px;
    width: 90%;
}

.station-stats-body {
    padding: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.stat-icon {
    font-size: 32px;
    margin-right: 15px;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #2a5298;
}

.station-card-new.long-press-active {
    background: #e3f2fd !important;
    transform: scale(0.98);
    transition: all 0.2s ease;
}

.station-card-new {
    transition: all 0.2s ease;
}

/* Ay Seçici */
.month-selector-container {
    margin-bottom: 20px;
    padding: 15px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.month-selector {
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #2a5298;
    border-radius: 8px;
    background: white;
    color: #2a5298;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.month-selector:hover {
    background: #e3f2fd;
    border-color: #3b6cb0;
}

.month-selector:focus {
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.2);
}


/* Takip Sayfası Stilleri */
.report-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 15px;
}

.report-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.report-category-card {
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.report-category-card:hover {
    transform: translateY(-2px);
}

/* Açılır Kapanır Bölümler */
.collapsible-section {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.collapsible-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background 0.3s;
}

.collapsible-header:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.collapsible-header h3 {
    margin: 0;
    font-size: 18px;
}

.toggle-icon {
    font-size: 14px;
    transition: transform 0.3s;
}

.collapsible-content {
    padding: 20px;
    display: block;
}

.collapsible-subsection {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.collapsible-subheader {
    padding: 12px 15px;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.2s;
}

.collapsible-subheader:hover {
    background: #e8e8e8;
}

.collapsible-subheader h4,
.collapsible-subheader h5 {
    margin: 0;
    font-size: 16px;
}

/* Panelvan Ambulanslar ve Özel Donanımlı Araçlar - Sarı Renk */
.collapsible-subheader.yellow-header {
    background: #ffd700 !important;
    color: #333 !important;
    font-weight: 700;
}

.collapsible-subheader.yellow-header:hover {
    background: #ffed4e !important;
}

.collapsible-subcontent {
    padding: 15px;
    background: white;
    display: block;
}

/* Araç Durum Kutucukları */
.vehicle-status-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.vehicle-status-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    padding: 28px 22px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.vehicle-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-status-card:hover::before {
    transform: scaleX(1);
}

.vehicle-status-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.vehicle-status-card.active {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.vehicle-status-card.active::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.vehicle-status-card.active:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.3), 0 0 0 1px rgba(76, 175, 80, 0.2);
}

.vehicle-status-card.broken {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
}

.vehicle-status-card.broken::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.vehicle-status-card.broken:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    box-shadow: 0 12px 35px rgba(244, 67, 54, 0.3), 0 0 0 1px rgba(244, 67, 54, 0.2);
}

/* Plaka Kutucukları */
.vehicle-plates-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
}

.vehicle-plates-container::-webkit-scrollbar {
    width: 8px;
}

.vehicle-plates-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.vehicle-plates-container::-webkit-scrollbar-thumb {
    background: #2a5298;
    border-radius: 4px;
}

.vehicle-plates-container::-webkit-scrollbar-thumb:hover {
    background: #1e3c72;
}

.plate-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    position: relative;
    overflow: hidden;
}

.plate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plate-card:hover::before {
    transform: scaleX(1);
}

.plate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

/* Araç durumu renklendirmeleri */
.plate-card.status-red {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%) !important;
    border-left: 4px solid #f44336 !important;
}

.plate-card.status-red:hover {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%) !important;
    box-shadow: 0 12px 35px rgba(244, 67, 54, 0.25), 0 0 0 1px rgba(244, 67, 54, 0.2) !important;
}

.plate-card.status-yellow {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%) !important;
    border-left: 4px solid #ffc107 !important;
}

.plate-card.status-yellow:hover {
    background: linear-gradient(135deg, #fff59d 0%, #fff176 100%) !important;
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.25), 0 0 0 1px rgba(255, 193, 7, 0.2) !important;
}

.plate-card.status-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-left: 4px solid #e0e0e0 !important;
}

.plate-text {
    font-size: 16px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 5px;
}

.plate-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 11px;
    color: #666;
}

.plate-model {
    font-weight: 600;
}

.plate-marka {
    color: #888;
}

.plate-sistem {
    padding: 2px 6px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 3px;
}

/* Panelvan Ambulanslar Raporlama */
.panelvan-report-section {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.report-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.report-card:hover::before {
    transform: scaleX(1);
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.report-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.report-value {
    font-size: 24px;
    font-weight: bold;
    color: #2a5298;
}

.report-card#panelvan-total {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.report-card#panelvan-total .report-label,
.report-card#panelvan-total .report-value {
    color: white;
}

.report-card#panelvan-4x4 {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border-color: #4caf50;
}

.report-card#panelvan-4x4 .report-label,
.report-card#panelvan-4x4 .report-value {
    color: white;
}

.report-card#panelvan-4x2 {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    border-color: #2196f3;
}

.report-card#panelvan-4x2 .report-label,
.report-card#panelvan-4x2 .report-value {
    color: white;
}

.report-card#panelvan-ems {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border-color: #ff9800;
}

.report-card#panelvan-ems .report-label,
.report-card#panelvan-ems .report-value {
    color: white;
}

.report-card#panelvan-dorser {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    border-color: #9c27b0;
}

.report-card#panelvan-dorser .report-label,
.report-card#panelvan-dorser .report-value {
    color: white;
}

.report-card#panelvan-ac {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
    border-color: #00bcd4;
}

.report-card#panelvan-ac .report-label,
.report-card#panelvan-ac .report-value {
    color: white;
}

/* Yıllara Göre Raporlama */
.report-grid-years {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.report-card-year {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 6px;
    text-align: center;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.report-card-year:hover {
    border-color: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.report-card-year .report-label {
    font-size: 10px;
    color: #666;
    margin-bottom: 3px;
    font-weight: 600;
    line-height: 1.2;
}

.report-card-year .report-value {
    font-size: 18px;
    font-weight: bold;
    color: #2a5298;
    line-height: 1.2;
}

/* Yıllara göre farklı renkler */
.report-card-year#panelvan-year-2014,
.report-card-year#panelvan-year-2015 {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    border-color: #bdbdbd;
}

.report-card-year#panelvan-year-2014 .report-label,
.report-card-year#panelvan-year-2014 .report-value,
.report-card-year#panelvan-year-2015 .report-label,
.report-card-year#panelvan-year-2015 .report-value {
    color: #333;
}

.report-card-year#panelvan-year-2016,
.report-card-year#panelvan-year-2017 {
    background: linear-gradient(135deg, #90caf9 0%, #64b5f6 100%);
    border-color: #64b5f6;
}

.report-card-year#panelvan-year-2016 .report-label,
.report-card-year#panelvan-year-2016 .report-value,
.report-card-year#panelvan-year-2017 .report-label,
.report-card-year#panelvan-year-2017 .report-value {
    color: white;
}

.report-card-year#panelvan-year-2018,
.report-card-year#panelvan-year-2019 {
    background: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
    border-color: #66bb6a;
}

.report-card-year#panelvan-year-2018 .report-label,
.report-card-year#panelvan-year-2018 .report-value,
.report-card-year#panelvan-year-2019 .report-label,
.report-card-year#panelvan-year-2019 .report-value {
    color: white;
}

.report-card-year#panelvan-year-2020,
.report-card-year#panelvan-year-2021 {
    background: linear-gradient(135deg, #ffb74d 0%, #ffa726 100%);
    border-color: #ffa726;
}

.report-card-year#panelvan-year-2020 .report-label,
.report-card-year#panelvan-year-2020 .report-value,
.report-card-year#panelvan-year-2021 .report-label,
.report-card-year#panelvan-year-2021 .report-value {
    color: white;
}

.report-card-year#panelvan-year-2022,
.report-card-year#panelvan-year-2023 {
    background: linear-gradient(135deg, #f06292 0%, #ec407a 100%);
    border-color: #ec407a;
}

.report-card-year#panelvan-year-2022 .report-label,
.report-card-year#panelvan-year-2022 .report-value,
.report-card-year#panelvan-year-2023 .report-label,
.report-card-year#panelvan-year-2023 .report-value {
    color: white;
}

.report-card-year#panelvan-year-2024,
.report-card-year#panelvan-year-2025 {
    background: linear-gradient(135deg, #ba68c8 0%, #ab47bc 100%);
    border-color: #ab47bc;
}

.report-card-year#panelvan-year-2024 .report-label,
.report-card-year#panelvan-year-2024 .report-value,
.report-card-year#panelvan-year-2025 .report-label,
.report-card-year#panelvan-year-2025 .report-value {
    color: white;
}

/* Araç Ekleme/Düzenleme Butonları */
.add-vehicle-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.add-vehicle-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.plate-actions {
    display: flex;
    gap: 5px;
    margin-top: 8px;
    justify-content: center;
}

.plate-status-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.plate-status-btn.broken-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.plate-status-btn.broken-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #e74c3c 0%, #d63031 100%);
}

.plate-status-btn.active-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.plate-status-btn.active-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #34ce57 0%, #28d9a3 100%);
}

.plate-edit-btn,
.plate-delete-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plate-edit-btn {
    background: #2196f3;
    color: white;
}

.plate-edit-btn:hover {
    background: #1976d2;
    transform: scale(1.1);
}

.plate-delete-btn {
    background: #f44336;
    color: white;
}

.plate-delete-btn:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

/* Modal Stilleri */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2a5298;
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 2px rgba(42, 82, 152, 0.1);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-primary {
    padding: 10px 20px;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    padding: 10px 20px;
    background: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

/* İstasyonlar Bölümü */
.stations-list-container {
    padding: 15px;
}

.stations-grid,
.stations-list {
    margin-top: 15px;
}

.stations-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.station-item-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.station-item-card:hover {
    border-color: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.station-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.station-item-header h4 {
    margin: 0;
    color: #2a5298;
    font-size: 18px;
    font-weight: bold;
}

.station-item-actions {
    display: flex;
    gap: 5px;
}

.station-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.info-label {
    font-weight: 600;
    color: #666;
    font-size: 13px;
}

.info-value {
    color: #333;
    font-size: 13px;
    text-align: right;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* İstasyon Satırları */
.station-row {
    margin-bottom: 8px;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.station-row:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.station-row-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    gap: 15px;
}

.station-row-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.station-row-name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.station-category-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.station-name-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.station-row-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.station-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.station-info-item strong {
    color: #555;
    font-weight: 600;
}

.station-row-actions {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

/* İstasyon Artı Butonu (Ek İstasyon Ekle) */
.station-add-sub-btn {
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

.station-add-sub-btn:hover {
    background: #45a049;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.station-add-sub-btn:active {
    transform: scale(0.95);
}

/* Alt İstasyon Stili */
.station-row.sub-station {
    margin-left: 40px;
    border-left: 3px solid #ff9800;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.station-row.sub-station .station-row-content {
    padding-left: 10px;
}

/* İstasyon Kategorileri - Açılır Kapanır */
.station-category-section {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.station-category-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.station-category-header:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

.category-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.category-count {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.count-main {
    background: #2196f3;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.count-sub {
    background: #ff9800;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-toggle-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #666;
}

/* Lokasyonlar (Ekip Araç Takibi) */
.locations-list-container {
    padding: 15px;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-row {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(42, 82, 152, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.location-row:hover {
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-row-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: center;
}

.location-station-box {
    display: flex;
    align-items: center;
}

.location-station-name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.location-category-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.location-name-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.location-vehicle-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.location-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    cursor: default;
}

.location-input[readonly] {
    background-color: #f5f5f5;
    cursor: pointer;
    color: #666;
}

/* Özel Donanımlı Araç Seçim Modal Stilleri */
.special-vehicle-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #2196f3;
    border-bottom-color: #2196f3;
    font-weight: 600;
}

.special-vehicle-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.vehicle-select-card {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.vehicle-select-card:hover {
    border-color: #2196f3;
    background: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vehicle-plate {
    font-size: 18px;
    font-weight: 600;
    color: #2a5298;
}

.file-upload-section {
    margin-bottom: 20px;
}

.file-upload-label {
    display: block;
    cursor: pointer;
}

.file-upload-box {
    border: 2px dashed #2196f3;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.file-upload-box:hover {
    background: #e3f2fd;
    border-color: #1976d2;
}

.file-upload-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.file-upload-text {
    display: block;
    color: #666;
    font-size: 14px;
}

.file-preview {
    margin-top: 15px;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 6px;
    margin-top: 10px;
}

.file-icon {
    font-size: 20px;
}

.file-name {
    flex: 1;
    font-weight: 500;
}

.file-size {
    color: #999;
    font-size: 12px;
}

.files-list {
    max-height: 400px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
}

.file-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.file-date {
    color: #999;
    font-size: 12px;
    margin-left: auto;
}

.files-section {
    margin-bottom: 20px;
}

.files-section-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.02);
    border-left: 4px solid;
}

.file-download-btn {
    padding: 8px 16px;
    background: #2196f3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.file-download-btn:hover {
    background: #1976d2;
}

.remove-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-input:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.location-add-vehicle-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-add-vehicle-btn {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

.location-add-vehicle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
}

.location-add-vehicle-btn:active {
    transform: scale(0.95);
}

.location-extra-row {
    margin-left: 30px;
    margin-top: 8px;
    border-radius: 6px;
    padding: 12px 15px;
    border: 1px solid rgba(42, 82, 152, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.location-extra-row:hover {
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-extra-indicator {
    font-size: 16px;
    color: #999;
    margin-right: 8px;
}

.location-delete-vehicle-btn {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(244, 67, 54, 0.3);
}

.location-delete-vehicle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.5);
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

.location-delete-vehicle-btn:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .location-row-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .location-add-vehicle-box {
        justify-content: flex-start;
    }
}

/* Araç Atama Sistemi */
.assignment-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.assignment-header:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.assignment-box {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.assignment-box-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.assignment-box-header:hover {
    background: linear-gradient(135deg, #e8ecf1 0%, #b8c5d8 100%);
}

.assignment-box-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.assignment-box-content {
    padding: 15px;
    background: #fafafa;
}

.assignment-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.assignment-select-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.assignment-select-section label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-display {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 42px;
}

.custom-select-display:hover {
    border-color: #667eea;
}

.custom-select-wrapper.active .custom-select-display {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    border-radius: 6px 6px 0 0;
}

.custom-select-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.active .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.custom-select-search {
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.custom-select-search:focus {
    outline: none;
    background: #f8f9fa;
}

.custom-select-options {
    max-height: 250px;
    overflow-y: auto;
    padding: 5px 0;
}

.custom-select-option {
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.custom-select-option:hover {
    background: #f0f0f0;
}

.custom-select-option.selected {
    background: #667eea;
    color: white;
}

.custom-select-option.hidden {
    display: none;
}

/* Eski stiller (geriye dönük uyumluluk için) */
.assignment-search {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px 6px 0 0;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
}

.assignment-search:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.assignment-select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.assignment-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.assignment-select option {
    padding: 8px 12px;
    display: block;
}

.assignment-select option[style*="display: none"] {
    display: none !important;
}

/* Yedek Araçlar */
.vehicle-status-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.vehicle-status-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    padding: 28px 22px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vehicle-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-status-card:hover::before {
    transform: scaleX(1);
}

.vehicle-status-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.vehicle-status-card.active {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.vehicle-status-card.active:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.vehicle-status-card.broken {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
}

.vehicle-status-card.broken:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.vehicle-status-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vehicle-status-count {
    font-size: 32px;
    font-weight: bold;
    opacity: 0.9;
}

.yedek-araclar-list-container {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Arama input'u için özel stil */
.assignment-select-section {
    position: relative;
}

.assignment-search-wrapper {
    position: relative;
}

.assignment-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.assignment-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.assign-btn {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.assign-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.unassign-btn {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
}

.unassign-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.assignment-list {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    max-height: 300px;
    overflow-y: auto;
}

.assigned-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: #f5f5f5;
    border-radius: 6px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.assigned-item:hover {
    background: #eeeeee;
    transform: translateX(3px);
}

.assigned-item:last-child {
    margin-bottom: 0;
}

.assigned-station {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.assigned-vehicle {
    font-weight: 500;
    color: #667eea;
    font-size: 14px;
    padding: 4px 10px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
}

.no-assigned {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.station-category-content {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.station-category-header {
    font-size: 20px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 15px;
    padding: 10px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.station-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

/* Kategori Özet Kutucukları */
.station-categories-overview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.station-category-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.station-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.station-category-card.selected {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border: 2px solid;
}

.station-category-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.station-category-card-name {
    font-size: 18px;
    font-weight: bold;
}

.station-category-card-count {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* Yedek Araçlar */
.vehicle-status-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.vehicle-status-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    padding: 28px 22px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vehicle-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-status-card:hover::before {
    transform: scaleX(1);
}

.vehicle-status-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.vehicle-status-card.active {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.vehicle-status-card.active:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.vehicle-status-card.broken {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
}

.vehicle-status-card.broken:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.vehicle-status-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vehicle-status-count {
    font-size: 32px;
    font-weight: bold;
    opacity: 0.9;
}

.yedek-araclar-list-container {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.ozel-donanımlı-araclar-list-container {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* ==================== TAKİP SAYFASI ÖZEL TASARIM - ANA SAYFA STİLİ ==================== */

#supervisor-1-arac-filosu-container {
    background: transparent;
}

#supervisor-1-arac-filosu-container .units-page {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

#supervisor-1-arac-filosu-container .units-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
}

#supervisor-1-arac-filosu-container .page-title {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b6cb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
    text-align: center;
}

/* Raporlama Bölümü - Ana Sayfa Stili */
#supervisor-1-arac-filosu-container .report-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    border: 2px solid transparent;
    position: relative;
}

#supervisor-1-arac-filosu-container .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b6cb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.3px;
}

#supervisor-1-arac-filosu-container .report-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#supervisor-1-arac-filosu-container .report-category-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a5298;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#supervisor-1-arac-filosu-container .report-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 82, 152, 0.1), transparent);
    transition: left 0.5s ease;
}

#supervisor-1-arac-filosu-container .report-category-card:hover::before {
    left: 100%;
}

#supervisor-1-arac-filosu-container .report-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    border-color: rgba(42, 82, 152, 0.2);
}

/* Collapsible Section - Ana Sayfa Stili */
#supervisor-1-arac-filosu-container .collapsible-section {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

#supervisor-1-arac-filosu-container .collapsible-section:hover {
    box-shadow: 0 8px 30px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    transform: translateY(-2px);
}

#supervisor-1-arac-filosu-container .collapsible-header {
    padding: 20px 28px;
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

#supervisor-1-arac-filosu-container .collapsible-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#supervisor-1-arac-filosu-container .collapsible-header:hover::before {
    left: 100%;
}

#supervisor-1-arac-filosu-container .collapsible-header:hover {
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
}

#supervisor-1-arac-filosu-container .collapsible-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

#supervisor-1-arac-filosu-container .toggle-icon {
    font-size: 0.9rem;
    color: white;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

#supervisor-1-arac-filosu-container .collapsible-content {
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(42, 82, 152, 0.1);
    display: block;
}

/* Subsection - Ana Sayfa Stili */
#supervisor-1-arac-filosu-container .collapsible-subsection {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

#supervisor-1-arac-filosu-container .collapsible-subsection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#supervisor-1-arac-filosu-container .collapsible-subsection:hover::before {
    transform: scaleX(1);
}

#supervisor-1-arac-filosu-container .collapsible-subsection:hover {
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    transform: translateY(-6px);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

#supervisor-1-arac-filosu-container .collapsible-subheader {
    padding: 16px 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2a5298;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

#supervisor-1-arac-filosu-container .collapsible-subheader:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    border-bottom-color: rgba(42, 82, 152, 0.2);
}

#supervisor-1-arac-filosu-container .collapsible-subheader h4,
#supervisor-1-arac-filosu-container .collapsible-subheader h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2a5298;
}

#supervisor-1-arac-filosu-container .collapsible-subheader.yellow-header {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    color: #92400e !important;
    border-bottom-color: #fbbf24 !important;
}

#supervisor-1-arac-filosu-container .collapsible-subheader.yellow-header:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%) !important;
    color: #78350f !important;
}

#supervisor-1-arac-filosu-container .collapsible-subcontent {
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: block;
}

/* Assignment Box - Ana Sayfa Stili */
#supervisor-1-arac-filosu-container .assignment-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

#supervisor-1-arac-filosu-container .assignment-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#supervisor-1-arac-filosu-container .assignment-box:hover::before {
    transform: scaleX(1);
}

#supervisor-1-arac-filosu-container .assignment-box:hover {
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    transform: translateY(-6px);
    border-color: rgba(42, 82, 152, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

#supervisor-1-arac-filosu-container .assignment-box-header {
    padding: 16px 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2a5298;
    transition: all 0.3s ease;
}

#supervisor-1-arac-filosu-container .assignment-box-header:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
}

#supervisor-1-arac-filosu-container .assignment-box-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2a5298;
}

#supervisor-1-arac-filosu-container .assignment-box-content {
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(42, 82, 152, 0.1);
}

/* Özel Donanımlı Araçlar Aktif Row */
.ozel-donanımlı-aktif-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ozel-donanımlı-aktif-row .collapsible-subsection {
    flex: 1;
    margin-bottom: 0;
}

.ozel-donanımlı-aktif-row .collapsible-subheader.active {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.ozel-donanımlı-aktif-row .collapsible-subheader.active:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
}

.ozel-donanımlı-aktif-row .collapsible-subheader.active h5 {
    color: white;
}

.ozel-donanımlı-aktif-row .collapsible-subheader.active .vehicle-status-count {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.ozel-donanımlı-aktif-row .collapsible-subheader.active .toggle-icon {
    color: white;
}

.ozel-donanımlı-aktif-row .collapsible-subheader.broken {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
}

.ozel-donanımlı-aktif-row .collapsible-subheader.broken:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

.ozel-donanımlı-aktif-row .collapsible-subheader.broken h5 {
    color: white;
}

.ozel-donanımlı-aktif-row .collapsible-subheader.broken .vehicle-status-count {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.ozel-donanımlı-aktif-row .collapsible-subheader.broken .toggle-icon {
    color: white;
}

/* Araç Kategorileri */
.vehicle-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin: 15px 0 10px 0;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.vehicle-category-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2a5298;
}

.vehicle-category-header .category-count {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    background: white;
    padding: 4px 12px;
    border-radius: 12px;
}

.vehicle-category-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 5px;
}

.station-category-card-stations {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.station-preview {
    font-size: 12px;
    color: #666;
    padding: 3px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.station-preview:last-child {
    border-bottom: none;
}

.station-preview-more {
    font-size: 11px;
    color: #999;
    font-style: italic;
    margin-top: 5px;
}

/* Notlar Bölümü */
.notes-container {
    padding: 15px;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.notes-list li {
    padding: 10px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-left: 3px solid #2a5298;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notes-list li span {
    flex: 1;
    color: #333;
    font-size: 14px;
}

.note-delete-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: #f44336;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.note-delete-btn:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

.add-note-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.add-note-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==================== OKSİJEN DEPO STİLLERİ ==================== */

.oksijen-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.tup-form-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tup-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tup-input-group label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.tup-input-group input[type="number"] {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.tup-input-group input[type="number"]:focus {
    outline: none;
    border-color: #667eea;
}

.tup-input-group.total {
    grid-column: 1 / -1;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.tup-input-group.total label {
    font-size: 16px;
    color: #667eea;
}

.tup-input-group.total span {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

.dosya-zorunlu {
    grid-column: 1 / -1;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.dosya-zorunlu p {
    margin: 0 0 10px 0;
}

.dosya-zorunlu input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.dosya-yukleme-alani {
    grid-column: 1 / -1;
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.dosya-yukleme-alani label {
    display: block;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.dosya-yukleme-alani input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
}

.dosya-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 8px;
}

.dosya-item span {
    flex: 1;
    color: #333;
    font-size: 14px;
}

.sil-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
}

.sil-btn:hover {
    background: #c82333;
}

.total-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.total-section .section-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.genel-toplam {
    text-align: center;
    padding: 20px;
}

.genel-toplam span {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .tup-form-container {
        grid-template-columns: 1fr;
    }
    
    .genel-toplam span {
        font-size: 36px;
    }
}

/* ==================== TAKVİM STİLLERİ ==================== */

.takvim-section {
    margin-bottom: 30px;
}

.takvim-container {
    width: 100%;
}

.takvim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.takvim-header h4 {
    margin: 0;
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.takvim-nav-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.takvim-nav-btn:hover {
    background: #5568d3;
}

.takvim-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.takvim-gun-baslik {
    text-align: center;
    font-weight: bold;
    color: #667eea;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 14px;
}

.takvim-gun {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.takvim-gun:hover {
    background: #f0f0f0;
    border-color: #667eea;
    transform: scale(1.05);
}

.takvim-gun.bos {
    background: transparent;
    border: none;
    cursor: default;
}

.takvim-gun.bos:hover {
    transform: none;
}

.takvim-gun.bugun {
    background: #667eea;
    color: white;
    border-color: #667eea;
    font-weight: bold;
}

.takvim-gun.secili {
    background: #764ba2;
    color: white;
    border-color: #764ba2;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(118, 75, 162, 0.5);
}

.takvim-gun.veri-var::after {
    display: none;
}

.takvim-gun {
    flex-direction: column;
    padding: 5px;
    align-items: flex-start;
    justify-content: flex-start;
}

.takvim-gun-numara {
    font-size: 14px;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 5px;
    width: 100%;
    text-align: left;
}

.takvim-gun.bugun .takvim-gun-numara,
.takvim-gun.secili .takvim-gun-numara {
    color: white;
}

.takvim-gun-ozet {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 3px;
    font-size: 9px;
    width: 100%;
}

.ozet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
}

.ozet-item.toplam {
    margin-top: 3px;
    padding-top: 3px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.takvim-gun.bugun .ozet-item.toplam,
.takvim-gun.secili .ozet-item.toplam {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.ozet-label {
    color: #666;
    font-size: 8px;
}

.takvim-gun.bugun .ozet-label,
.takvim-gun.secili .ozet-label {
    color: rgba(255, 255, 255, 0.9);
}

.ozet-deger {
    color: #2a5298;
    font-weight: 600;
    font-size: 9px;
}

.takvim-gun.bugun .ozet-deger,
.takvim-gun.secili .ozet-deger {
    color: white;
}

.ozet-item.toplam .ozet-label,
.ozet-item.toplam .ozet-deger {
    color: #667eea;
    font-size: 10px;
}

.takvim-gun.bugun .ozet-item.toplam .ozet-label,
.takvim-gun.bugun .ozet-item.toplam .ozet-deger,
.takvim-gun.secili .ozet-item.toplam .ozet-label,
.takvim-gun.secili .ozet-item.toplam .ozet-deger {
    color: white;
    font-size: 11px;
}

.secili-gun-bilgi {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.secili-gun-bilgi p {
    margin: 8px 0;
    color: #333;
    font-size: 14px;
}

.secili-gun-bilgi span {
    color: #667eea;
    font-weight: 600;
}

.bugun-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.3s;
}

.bugun-btn:hover {
    background: #218838;
}

@media (max-width: 768px) {
    .takvim-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .takvim-nav-btn {
        width: 100%;
    }
    
    .takvim-gun {
        font-size: 12px;
        padding: 5px;
    }
}

/* ==================== KAYDET BUTONU STİLLERİ ==================== */

.kaydet-buton-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
}

.kaydet-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    min-width: 200px;
}

.kaydet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.kaydet-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.kaydet-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .kaydet-btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* ==================== OKSİJEN DEPO SAYFASI STİLLERİ (Ana Sayfa Tasarımı) ==================== */

#supervisor-1-oksijen-envanter-container,
#personel-oksijen-envanter-container {
    background: transparent;
}

#supervisor-1-oksijen-envanter-container .units-page,
#personel-oksijen-envanter-container .units-page {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

#supervisor-1-oksijen-envanter-container .units-page::before,
#personel-oksijen-envanter-container .units-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
}

#supervisor-1-oksijen-envanter-container .page-title,
#personel-oksijen-envanter-container .page-title {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b6cb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
    text-align: center;
}

#supervisor-1-oksijen-envanter-container .collapsible-section,
#personel-oksijen-envanter-container .collapsible-section {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

#supervisor-1-oksijen-envanter-container .collapsible-section:hover,
#personel-oksijen-envanter-container .collapsible-section:hover {
    box-shadow: 0 8px 30px rgba(42, 82, 152, 0.2), 0 0 0 1px rgba(42, 82, 152, 0.15);
    transform: translateY(-2px);
}

#supervisor-1-oksijen-envanter-container .collapsible-header,
#personel-oksijen-envanter-container .collapsible-header {
    padding: 20px 28px;
    background: linear-gradient(135deg, #2a5298 0%, #3b6cb0 50%, #4a90e2 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

#supervisor-1-oksijen-envanter-container .collapsible-header::before,
#personel-oksijen-envanter-container .collapsible-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#supervisor-1-oksijen-envanter-container .collapsible-header:hover::before,
#personel-oksijen-envanter-container .collapsible-header:hover::before {
    left: 100%;
}

#supervisor-1-oksijen-envanter-container .collapsible-header:hover,
#personel-oksijen-envanter-container .collapsible-header:hover {
    background: linear-gradient(135deg, #3b6cb0 0%, #4a90e2 100%);
}

#supervisor-1-oksijen-envanter-container .collapsible-header h3,
#personel-oksijen-envanter-container .collapsible-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

#supervisor-1-oksijen-envanter-container .toggle-icon,
#personel-oksijen-envanter-container .toggle-icon {
    font-size: 0.9rem;
    color: white;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

#supervisor-1-oksijen-envanter-container .collapsible-content,
#personel-oksijen-envanter-container .collapsible-content {
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(42, 82, 152, 0.1);
    display: block;
}

/* Oksijen sayfası için özel stiller */
#supervisor-1-oksijen-envanter-container .tup-form-container,
#personel-oksijen-envanter-container .tup-form-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

#supervisor-1-oksijen-envanter-container .tup-input-group,
#personel-oksijen-envanter-container .tup-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#supervisor-1-oksijen-envanter-container .tup-input-group label,
#personel-oksijen-envanter-container .tup-input-group label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

#supervisor-1-oksijen-envanter-container .tup-input-group input[type="number"],
#personel-oksijen-envanter-container .tup-input-group input[type="number"] {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

#supervisor-1-oksijen-envanter-container .tup-input-group input[type="number"]:focus,
#personel-oksijen-envanter-container .tup-input-group input[type="number"]:focus {
    outline: none;
    border-color: #667eea;
}

#supervisor-1-oksijen-envanter-container .tup-input-group.total,
#personel-oksijen-envanter-container .tup-input-group.total {
    grid-column: 1 / -1;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #667eea;
}

#supervisor-1-oksijen-envanter-container .tup-input-group.total label,
#personel-oksijen-envanter-container .tup-input-group.total label {
    font-size: 16px;
    color: #667eea;
}

#supervisor-1-oksijen-envanter-container .tup-input-group.total span,
#personel-oksijen-envanter-container .tup-input-group.total span {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

#supervisor-1-oksijen-envanter-container .genel-toplam,
#personel-oksijen-envanter-container .genel-toplam {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

#supervisor-1-oksijen-envanter-container .genel-toplam span,
#personel-oksijen-envanter-container .genel-toplam span {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #supervisor-1-oksijen-envanter-container .units-page,
    #personel-oksijen-envanter-container .units-page {
        padding: 30px 20px;
    }
    
    #supervisor-1-oksijen-envanter-container .tup-form-container,
    #personel-oksijen-envanter-container .tup-form-container {
        grid-template-columns: 1fr;
    }
    
    #supervisor-1-oksijen-envanter-container .genel-toplam span,
    #personel-oksijen-envanter-container .genel-toplam span {
        font-size: 36px;
    }
}

/* ==================== GÜN ÖZETİ STİLLERİ ==================== */

.gun-ozet-container {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(42, 82, 152, 0.12), 0 0 0 1px rgba(42, 82, 152, 0.08);
}

.gun-ozet-container h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2a5298;
    font-weight: 600;
    font-size: 1.3rem;
}

.gun-ozet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gun-ozet-kart {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gun-ozet-kart:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.gun-ozet-kart h5 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a5298;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.gun-ozet-kart.genel-toplam-kart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.gun-ozet-kart.genel-toplam-kart h5 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.gun-ozet-kart.zaman-kart {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    grid-column: 1 / -1;
}

.ozet-detay {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ozet-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.ozet-satir:last-child {
    border-bottom: none;
}

.ozet-satir span {
    color: #666;
    font-size: 0.95rem;
}

.ozet-satir strong {
    color: #2a5298;
    font-size: 1.1rem;
    font-weight: 600;
}

.ozet-satir.toplam {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
    border-bottom: none;
}

.ozet-satir.toplam span {
    font-weight: 600;
    color: #2a5298;
    font-size: 1rem;
}

.ozet-satir.toplam strong {
    font-size: 1.3rem;
    color: #667eea;
}

.ozet-satir.toplam-buyuk {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
}

.genel-toplam-kart .ozet-satir span,
.genel-toplam-kart .ozet-satir strong {
    color: white;
}

.genel-toplam-kart .ozet-satir.toplam-buyuk strong {
    font-size: 1.8rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .gun-ozet-grid {
        grid-template-columns: 1fr;
    }
    
    .gun-ozet-kart.zaman-kart {
        grid-column: 1;
    }
}

/* ==================== KAYIT SATIRI STİLLERİ ==================== */

.ekle-buton-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.ekle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ekle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.toplam-bilgi {
    font-size: 16px;
    font-weight: 600;
    color: #2a5298;
}

.toplam-bilgi strong {
    font-size: 20px;
    color: #667eea;
}

.kayit-listesi {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kayit-satir {
    display: grid;
    grid-template-columns: 45px minmax(150px, 1.5fr) 110px 90px minmax(180px, 1.5fr) 70px;
    gap: 12px;
    align-items: start;
    padding: 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    margin-bottom: 12px;
}

.kayit-satir:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
    transform: translateY(-2px);
}

.kayit-satir-numara {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
    align-self: start;
    margin-top: 24px;
}

.kayit-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    overflow: visible;
    width: 100%;
}

.kayit-input-group label {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kayit-yer-input,
.kayit-adet-input {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    background: #fafafa;
}

.kayit-yer-input:hover,
.kayit-adet-input:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.kayit-yer-input:focus,
.kayit-adet-input:focus {
    outline: none;
    border-color: #667eea;
}

.kayit-tup-select {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.kayit-tup-select:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.kayit-tup-select:focus {
    outline: none;
    border-color: #667eea;
}

.kayit-dosya-input {
    font-size: 11px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: #fafafa;
    transition: all 0.3s;
    cursor: pointer;
}

.kayit-dosya-input:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.dosya-bilgi {
    margin-top: 6px;
    font-size: 11px;
    color: #667eea;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 4px 8px;
    background: #f0f4ff;
    border-radius: 4px;
}

.sil-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
    align-self: start;
    margin-top: 24px;
}

.sil-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.kayit-listesi {
    width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
}

.collapsible-content {
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (max-width: 1400px) {
    .kayit-satir {
        grid-template-columns: 45px minmax(120px, 1.2fr) 100px 85px minmax(150px, 1.2fr) 65px;
        gap: 10px;
        padding: 15px;
    }
}

@media (max-width: 1200px) {
    .kayit-satir {
        grid-template-columns: 45px minmax(100px, 1fr) 95px 80px minmax(130px, 1fr) 60px;
        gap: 8px;
        padding: 12px;
    }
    
    .kayit-input-group label {
        font-size: 10px;
    }
    
    .kayit-yer-input,
    .kayit-adet-input,
    .kayit-tup-select {
        font-size: 12px;
        padding: 8px 10px;
    }
}

@media (max-width: 968px) {
    .kayit-satir {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .kayit-satir-numara {
        width: 35px;
        height: 35px;
        font-size: 13px;
        justify-self: start;
    }
    
    .sil-btn {
        margin-top: 0;
        width: 100%;
    }
    
    .ekle-buton-container {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .ekle-btn {
        width: 100%;
    }
    
    .kayit-input-group {
        width: 100%;
    }
}

