/* Custom Header Styling */
.custom-header {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
}

.custom-brand {
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    padding-left: 0;
}

.brand-fetch {
    color: #333;
}

.brand-go {
    color: #dc3545;
}

.custom-nav {
    gap: 2.5rem;
}

.custom-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.custom-nav .nav-link:hover {
    color: #dc3545 !important;
}

.custom-nav .nav-link.active {
    color: #dc3545 !important;
    border-bottom: 2px solid #dc3545;
}

.custom-user {
    color: #333 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav:last-child {
    padding-right: 0;
}

.user-icon {
    font-size: 1.2rem;
    color: #333;
}

.custom-login-btn {
    background-color: #dc3545 !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #dc3545;
}

.custom-login-btn:hover {
    background-color: #c82333 !important;
    border-color: #c82333;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-primary:hover {
    background-color: #1e3d6f;
    border-color: #1e3d6f;
}

.text-primary {
    color: #2c5aa0 !important;
}

.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #dc3545;
    color: white;
    border: none;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.help-button:hover {
    background-color: #c82333;
    transform: scale(1.1);
}

.vehicle-card {
    transition: transform 0.2s;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.status-badge {
    font-size: 0.8em;
    padding: 0.25rem 0.5rem;
}

.alert-dismissible {
    position: relative;
    padding-right: 4rem;
}

.footer {
    background-color: #f8f9fa;
    margin-top: 50px;
    padding: 20px 0;
}

/* Responsive Media Queries */
@media (max-width: 575.98px) {
    .custom-nav {
        gap: 1rem;
    }
}
