/**
 * Fahrtenbuch Styles
 * 
 * Main stylesheet for the driving log application.
 * Mobile-first responsive design.
 * 
 * @package Fahrtenbuch
 * @author  Your Name
 * @license MIT
 */

body {
    padding-bottom: 80px;
}

.active-trip-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trip-card {
    margin-bottom: 15px;
    border-left: 4px solid;
    transition: transform 0.2s;
}

.trip-card:hover {
    transform: translateX(5px);
}

.trip-card.status-incomplete {
    border-left-color: #dc3545;
    background-color: #fff5f5;
}

.trip-card.status-pending {
    border-left-color: #ffc107;
    background-color: #fffdf0;
}

.trip-card.status-complete {
    border-left-color: #28a745;
    background-color: #f0fff4;
}

.quick-action-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.quick-action-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-action-buttons .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.quick-action-buttons .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.quick-action-buttons .btn-outline-primary {
    background-color: white;
}

.status-badge {
    font-size: 0.8rem;
    padding: 4px 8px;
}

.timer {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
}

.km-display {
    font-size: 1.1rem;
    font-weight: 500;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    opacity: 0.3;
}
