/* Vehicle Management System - Frontend Styles */

/* Color Scheme */
:root {
    --vms-primary: #546E7A;
    --vms-secondary: #F5F5F5;
    --vms-accent: #FF9800;
    --vms-text: #333333;
    --vms-border: #E0E0E0;
    --vms-shadow: rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
.vms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Cards */
.vms-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px var(--vms-shadow);
    transition: all 0.3s ease;
}

.vms-card:hover {
    box-shadow: 0 4px 8px var(--vms-shadow);
    transform: translateY(-2px);
}

/* Buttons */
.vms-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vms-btn-primary {
    background: var(--vms-accent);
    color: white;
}

.vms-btn-primary:hover {
    background: #F57C00;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vms-btn-secondary {
    background: var(--vms-primary);
    color: white;
}

.vms-btn-secondary:hover {
    background: #455A64;
}

/* Grid Layout */
.vms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .vms-container {
        padding: 10px;
    }
    
    .vms-grid {
        grid-template-columns: 1fr;
    }
}
