/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    color: #2b3445;
}

/* Tùy chỉnh Card hiện đại */
.modern-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    background: #ffffff;
}

.modern-card:hover {
    transform: translateY(-3px);
}

/* Icon trong Card Thống kê */
.stat-icon {
    font-size: 2rem;
    color: #0d6efd;
    opacity: 0.2;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

/* Custom Input Focus */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border-color: #86b7fe;
}

/* Tùy chỉnh danh sách chuyến đi */
.trip-timeline {
    border-left: 3px solid #0d6efd;
    padding-left: 15px;
    position: relative;
}
.trip-timeline::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0d6efd;
    border-radius: 50%;
    left: -7.5px;
    top: 5px;
}