/* Estilos personalizados para el sistema de cotizaciones IMEP SRL */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    font-weight: 600;
}

.navbar-brand {
    font-weight: 700;
}

.btn {
    border-radius: 5px;
    font-weight: 500;
}

.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
    font-weight: 600;
    background-color: #f8f9fc;
}

.badge {
    font-size: 0.8em;
}

.alert {
    border: none;
    border-radius: 8px;
}

.form-control, .form-select {
    border-radius: 5px;
}

.input-group-text {
    border-radius: 5px 0 0 5px;
}

/* Estilos para el dashboard */
.card.bg-primary, .card.bg-success, .card.bg-info, .card.bg-warning {
    color: white;
}

.card.bg-primary .card-footer, .card.bg-success .card-footer, .card.bg-info .card-footer, .card.bg-warning .card-footer {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Estilos para formularios */
.form-label {
    font-weight: 600;
    color: #5a5c69;
}

/* Estilos para paginación */
.pagination .page-link {
    border-radius: 5px;
    margin: 0 2px;
    border: 1px solid #ddd;
    color: #4e73df;
}

.pagination .page-item.active .page-link {
    background-color: #4e73df;
    border-color: #4e73df;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-bottom: 5px;
        border-radius: 5px !important;
    }
}