html {
  font-size: 13px;
}

@media (min-width: 768px) {
  html {
    font-size: 13px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


body {
    /* Fondo con capa blanca semitransparente y una imagen */
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.99)), url('/imagenes/planos.jpg');
    background-size: cover; /* Ajusta la imagen para cubrir toda la pantalla */
    background-repeat: no-repeat; /* Evita que se repita */
    background-position: center; /* Centrada */
}
/* Estilo para tablas DataTable */
table.dataTable {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    font-weight: 600; /* Letra más intensa */
    color: #212529; /* Color oscuro y elegante */
    background-color: #ffffff;
}

    /* Encabezado */
    table.dataTable thead th {
        font-weight: 700;
        color: #0d6efd; /* Azul elegante para headers */
        border-bottom: 2px solid #dee2e6;
    }

    /* Celdas */
    table.dataTable td {
        padding: 10px 12px;
        vertical-align: middle;
    }

    /* Zebra rows */
    table.dataTable tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    /* Hover efecto */
    table.dataTable tbody tr:hover {
        background-color: #e9f5ff;
    }


/* ==== FORMULARIOS PROFESIONALES ==== */
form {
    background-color: #ffffffee;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

label.control-label {
    font-weight: 600;
    color: #343a40;
    font-size: 15px;
}

input.form-control,
select.form-control,
textarea.form-control {
    border: 1px solid #ced4da;
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    input.form-control:focus,
    select.form-control:focus,
    textarea.form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        outline: none;
    }

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

.btn-secondary {
    font-weight: 500;
    border-radius: 8px;
}
form.form-nostyle {
    background: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    display: inline;
}

