/* App-wide custom styles */
.status-bar {
    height: 44px;
    padding: 12px 16px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.nav-bar {
    height: 83px;
    border-top: 1px solid #e5e7eb;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 10px;
}

.nav-item.active {
    color: #3b82f6;
}

.nav-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.card {
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 16px;
    margin-bottom: 16px;
}

.progress-bar {
    height: 8px;
    border-radius: 4px;
    background-color: #e5e7eb;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
}

.car-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-item {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 500;
}

.btn-secondary {
    background-color: #f3f4f6;
    color: #1f2937;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 500;
}

.badge {
    background-color: #ef4444;
    color: white;
    border-radius: 10px;
    font-size: 10px;
    padding: 2px 6px;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Transitions and animations */
.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
} 