﻿/* Hire Car PNG - Custom Styles */

/* Vehicle Card Styles */
.vehicle-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

    .vehicle-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

    .vehicle-card img {
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .vehicle-card:hover img {
        transform: scale(1.05);
    }

    .vehicle-card .card-body {
        padding: 15px;
    }

.vehicle-price {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: bold;
}

.vehicle-location {
    color: #6c757d;
    font-size: 0.9rem;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.feature-badge {
    background-color: #f8f9fa;
    color: #495057;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Business Dashboard Styles */
.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .stat-card i {
        font-size: 2rem;
        opacity: 0.8;
    }

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Booking Timeline */
.booking-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    padding: 10px 20px;
    border-left: 3px solid #007bff;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 0 5px 5px 0;
}

    .timeline-item.pending {
        border-left-color: #ffc107;
    }

    .timeline-item.approved {
        border-left-color: #28a745;
    }

    .timeline-item.completed {
        border-left-color: #6c757d;
    }

/* Province Map Placeholder */
.province-map {
    background: #e9ecef;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
}

/* Loading Spinner */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.custom-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
