      :root {
            --planned-color: #dc3545;
            --planned-color-light: #ffebee;
            --on-road-color: #6c757d;
            --on-road-color-light: #f5f5f5;
            --package-ready-color: #28a745;
            --package-preparing-color: #ffc107;
            --package-waiting-color: #dc3545;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0;
            font-size: 0.9rem;
        }
        
        /* Header Alanı */
        .main-header {
            background: linear-gradient(to right, #343a40, #212529);
            color: white;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .company-logo {
            height: 30px;
            margin-right: 10px;
        }
        
        .date-time {
            text-align: right;
            font-size: 0.9rem;
        }
        
        .refresh-info {
            font-size: 0.7rem;
            margin-top: 3px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .btn-refresh {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            margin-left: 10px;
            padding: 2px 6px;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 0.7rem;
        }
        
        .btn-refresh:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .countdown {
            margin-left: 5px;
            font-weight: bold;
        }
        
        /* Dashboard Başlık */
        .dashboard-title {
            background-color: #e9ecef;
            padding: 8px 15px;
            border-bottom: 1px solid #dee2e6;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dashboard-title h2 {
            margin: 0;
            font-size: 1.2rem;
            color: #343a40;
            display: flex;
            align-items: center;
        }
        
        .dashboard-title h2 i {
            margin-right: 8px;
            color: #495057;
        }
        
        /* Tur Kartları */
        .tours-container {
            padding: 0 15px 15px;
        }
        
        .tours-grid {
            margin: 0 -8px;
        }
        
        .tour-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #dee2e6;
            font-size: 0.85rem;
        }
        
        .tour-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        /* Durum Göstergeleri */
        .status-planned {
            background-color: var(--planned-color-dark);
            border-left: 4px solid var(--planned-color);
        }
        
        .status-on-road {
            background-color: var(--blue);
            border-left: 4px solid var(--on-road-color);
            opacity: 0.85;
        }
        
        .badge-planned {
            background-color: var(--planned-color) !important;
            color: white !important;
            font-size: 0.7rem;
            padding: 3px 6px;
        }
        
        .badge-on-road {
            background-color: var(--on-road-color) !important;
            color: white !important;
            font-size: 0.7rem;
            padding: 3px 6px;
        }
        
        /* Paket Durumu */
        .paket-bildirim {
            position: absolute;
            top: 5px;
            right: 5px;
            padding: 2px 6px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: bold;
            z-index: 10;
            display: flex;
            align-items: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .paket-bildirim i {
            margin-right: 3px;
            font-size: 0.7rem;
        }
        
        .paket-hazir {
            background-color: var(--package-ready-color);
            color: white;
        }
        
        .paket-hazirlaniyor {
            background-color: var(--package-preparing-color);
            color: black;
        }
        
        .paket-beklemede {
            background-color: var(--package-waiting-color);
            color: white;
        }
        
        /* Tur Kart İçeriği */
        .tour-header {
            padding: 8px 10px;
            background-color: rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .tour-status {
            text-align: center;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.7rem;
            display: inline-block;
            margin: 0 auto;
        }
        
        .tour-body {
            padding: 8px 10px;
            flex-grow: 1;
        }
        
        .tour-info-row {
            display: flex;
            margin-bottom: 5px;
            align-items: center;
        }
        
        .tour-info-icon {
            width: 20px;
            text-align: center;
            color: #6c757d;
            font-size: 0.8rem;
        }
        
        .tour-info-content {
            flex-grow: 1;
            margin-left: 5px;
            font-size: 0.8rem;
        }
        
        .tour-info-label {
            font-weight: bold;
            margin-right: 3px;
            color: #495057;
        }
        
        .tour-footer {
            padding: 5px 10px;
            background-color: rgba(0, 0, 0, 0.05);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            align-items: center;
        }
        
        /* Durak Listesi */
        .durak-listesi {
            margin-top: 5px;
            font-size: 0.75rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background-color: rgba(255, 255, 255, 0.7);
            padding: 3px 5px;
            border-radius: 4px;
        }
        
        .durak-item {
            display: inline;
            margin-right: 5px;
        }
        
        .durak-item:not(:last-child)::after {
            content: "→";
            margin: 0 3px;
            color: #6c757d;
        }
        
        /* Tur Detay Butonu */
        .tur-detay-btn {
            display: inline-block;
            padding: 2px 5px;
            background-color: #17a2b8;
            color: white;
            border-radius: 3px;
            text-decoration: none;
            font-size: 0.7rem;
            transition: all 0.3s;
        }
        
        .tur-detay-btn:hover {
            background-color: #138496;
        }
        
        /* Yarın Turları Tablosu */
        .yarin-turlar-baslik {
            background-color: #e9ecef;
            padding: 8px 15px;
            margin: 15px 0 10px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1rem;
            color: #343a40;
        }
        
        .yarin-turlar-tablo {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }
        
        .yarin-turlar-tablo th {
            background-color: #f8f9fa;
            padding: 6px 10px;
            text-align: left;
            border-bottom: 2px solid #dee2e6;
        }
        
        .yarin-turlar-tablo td {
            padding: 5px 10px;
            border-bottom: 1px solid #dee2e6;
        }
        
        .yarin-turlar-tablo tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .yarin-turlar-tablo tr:hover {
            background-color: #e9ecef;
        }
        
        /* Bildirim Sesi */
        .notification-badge {
            position: fixed;
            top: 60px;
            right: 15px;
            background-color: rgba(40, 167, 69, 0.9);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            animation: fadeInOut 5s forwards;
            font-size: 0.85rem;
        }
        
        .notification-badge i {
            margin-right: 8px;
        }
        
        @keyframes fadeInOut {
            0% { opacity: 0; transform: translateY(-20px); }
            10% { opacity: 1; transform: translateY(0); }
            90% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(-20px); }
        }
        
        /* Acil Durum Göstergeleri */
        .acil-tur {
            position: relative;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            70% { box-shadow: 0 0 0 5px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }
        
        /* Zaman Göstergeleri */
        .zaman-gosterge {
            display: inline-block;
            padding: 1px 4px;
            border-radius: 3px;
            font-size: 0.7rem;
            margin-left: 3px;
        }
        
        .zaman-yaklasti {
            background-color: #ffc107;
            color: black;
        }
        
        .zaman-gecikti {
            background-color: #dc3545;
            color: white;
        }
        
        /* Responsive Ayarlar */
        @media (max-width: 992px) {
            .tours-grid .col-md-3 {
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .main-header {
                flex-direction: column;
                text-align: center;
                padding: 10px;
            }
            
            .date-time {
                margin-top: 8px;
                text-align: center;
            }
            
            .refresh-info {
                justify-content: center;
            }
            
            .yarin-turlar-tablo {
                font-size: 0.75rem;
            }
        }