

        /* Reset some browser defaults */
        body, html {
            margin: 0;
            padding: 0;
            height: auto;
            overflow-x: hidden;
        }
		
		
		.navbar-brand img {
			max-height: 100px;
			width: auto;
		}

		/* Custom navbar styling */
		.navbar {
				background-color: #f5f5f5 !important; /* Light gray background */
				box-shadow: 0 2px 4px rgba(0,0,0,0.1);
		}

		.navbar-nav .nav-link {
			color: #2c3e50 !important; /* Dark blue-gray text */
			font-weight: 500;
			transition: color 0.3s ease;
		}

		.navbar-nav .nav-link:hover {
			color: #e74c3c !important; /* Red on hover */
		}

		.navbar-nav .nav-link.active {
			color: #c0392b !important; /* Darker red for active */
			font-weight: 600;
		}

		.navbar-toggler {
			border-color: #2c3e50;
		}

		.navbar-toggler-icon {
			background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
		}

		.dropdown-menu {
			border: 1px solid #dee2e6;
			box-shadow: 0 4px 6px rgba(0,0,0,0.1);
		}

		.dropdown-item:hover {
			background-color: #e74c3c;
			color: white;
		}
		
		
        
        /* Container for the hero section */
        .hero-container {
            width: 100%;
            height: 600px; /* Fixed height - change this value as needed */
            position: relative;
            overflow: hidden;
        }
        
        /* Video styling */
        .hero-video {
            width: 100%;
            height: 600px; /* Same as container */
            object-fit: cover;
            display: block;
        }
        
        /* Overlay for better text visibility */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
        }
        
        /* Container for text */
        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        /* Text styling */
        .hero-title {
            color: white;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* Content below the hero */
        .main-content {
            padding: 2rem;
            background-color: #f3f3f3;
        }
		/* Custom Red Button Styling for Vehicles Page */

/* Override Bootstrap primary buttons with red */
.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: white;
}

.btn-danger:focus,
.btn-danger.focus {
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active {
    background-color: #bd2130;
    border-color: #b21f2d;
}

/* Alternative: Create a custom red button class */
.btn-red {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-red:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: white;
}

.btn-red:focus,
.btn-red.focus {
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-red:not(:disabled):not(.disabled):active,
.btn-red:not(:disabled):not(.disabled).active {
    background-color: #bd2130;
    border-color: #b21f2d;
}
.gdpr-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.gdpr-consent-modal {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.gdpr-consent-header {
    padding: 20px 25px 15px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 12px 12px 0 0;
}

.gdpr-consent-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.gdpr-consent-header i {
    margin-right: 8px;
}

.gdpr-consent-body {
    padding: 25px;
    line-height: 1.6;
    color: #333;
}

.gdpr-consent-body p {
    margin-bottom: 15px;
}

.gdpr-list {
    margin: 15px 0;
    padding-left: 20px;
}

.gdpr-list li {
    margin-bottom: 8px;
}

.gdpr-privacy-link {
    font-size: 0.9rem;
    color: #6c757d;
}

.gdpr-privacy-link a {
    color: #007bff;
    text-decoration: none;
}

.gdpr-privacy-link a:hover {
    text-decoration: underline;
}

.gdpr-consent-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.gdpr-consent-footer form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gdpr-btn-accept,
.gdpr-btn-reject {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.gdpr-btn-accept {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
}

.gdpr-btn-accept:hover {
    background: linear-gradient(135deg, #218838, #1e7e7d);
    transform: translateY(-1px);
}

.gdpr-btn-reject {
    background: #6c757d;
    border: 1px solid #6c757d;
    color: white;
}

.gdpr-btn-reject:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .gdpr-consent-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .gdpr-consent-footer form {
        flex-direction: column;
    }
    
    .gdpr-btn-accept,
    .gdpr-btn-reject {
        min-width: auto;
    }
    
    .gdpr-consent-header,
    .gdpr-consent-body,
    .gdpr-consent-footer {
        padding: 15px 20px;
    }
}

/* Prevent body scroll when modal is open */
body.gdpr-modal-open {
    overflow: hidden;
}

/* Add these styles to your admin CSS file */

/* Enhanced stat cards for analytics */
.stat-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Background colors for stat cards */
.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.bg-info-light {
    background-color: rgba(13, 202, 240, 0.1);
    border: 1px solid rgba(13, 202, 240, 0.2);
}

.bg-success-light {
    background-color: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.bg-secondary-light {
    background-color: rgba(108, 117, 125, 0.1);
    border: 1px solid rgba(108, 117, 125, 0.2);
}

/* Country flag styling */
.country-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

/* Table enhancements */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.025);
}

/* Filter card styling */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

