/* Estilos personalizados para o Sistema de Oficina Mecânica */

/* Estilos gerais */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Ajustes no cabeçalho */
.navbar-brand {
    font-weight: bold;
}

/* Estilos para os cards */
.card {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    font-weight: bold;
    background-color: #f8f9fa;
}

/* Estilo para as tabelas */
.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Estilização de formulários */
.form-label {
    font-weight: 600;
}

.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Customização dos botões */
.btn {
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 500;
}

/* Estilo específico para botões de ação nas tabelas */
.btn-action {
    padding: 4px 8px;
    margin: 0 2px;
}

/* Customização do rodapé */
footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Dashboard cards */
.dashboard-card {
    border-left: 4px solid;
    border-radius: 4px;
    transition: all 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-card-primary {
    border-left-color: #0d6efd;
}

.dashboard-card-success {
    border-left-color: #198754;
}

.dashboard-card-warning {
    border-left-color: #ffc107;
}

.dashboard-card-danger {
    border-left-color: #dc3545;
}

.dashboard-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Estilização para detalhes de veículo/cliente */
.detalhe-cabecalho {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Estilização para status de atendimento */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #6c757d;
}

.timeline-item.active::before {
    background-color: #0d6efd;
} 