/* Auto Repair Profit Tracker - Custom Styles */

body {
    font-size: 0.95rem;
}

.navbar-brand {
    font-weight: 600;
}

.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    font-weight: 600;
}

.table td {
    vertical-align: middle;
}

/* Mobile improvements */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    .table {
        font-size: 0.85rem;
    }

    .fs-4 {
        font-size: 1.2rem !important;
    }

    .fs-5 {
        font-size: 1rem !important;
    }

    .card-body {
        padding: 0.75rem;
    }
}

/* Form styling */
.form-label {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Calculation display */
#calc_total, #calc_profit, #calc_mechanic, #calc_shop {
    transition: color 0.2s;
}

/* Badge styles */
.badge {
    font-weight: 500;
}

/* Print styles */
@media print {
    .navbar, .btn, form, footer {
        display: none !important;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
