/* PWA-specific styles */
.install-pwa {
    background: linear-gradient(135deg, #4a1c5e 0%, #2b1c5e 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(74, 28, 94, 0.4);
}

.install-pwa:hover {
    box-shadow: 0 6px 20px rgba(74, 28, 94, 0.6);
    transform: translateY(-2px);
}

.offline-banner {
    background: linear-gradient(135deg, #1c2541 0%, #0b132b 100%);
    color: #F59E0B;
    font-weight: 500;
    text-align: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pwa-mode .site-header {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.trip-item {
    background: var(--card);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
    transition: transform 0.2s ease;
}

.verification-success {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}