﻿
.reporte-resultados {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 500px;
}


.btn-close {
    background-color: #007bff; /* Azul profesional */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

    .btn-close:hover {
        background-color: #f5f6f7; /* Azul más oscuro al pasar el mouse */
        transform: translateY(-2px); /* Efecto de elevarse ligeramente */
    }

    .btn-close:active {
        background-color: #004085; /* Azul más oscuro al hacer clic */
        transform: translateY(0); /* El botón se "hundirá" ligeramente */
    }

    .btn-close:focus {
        outline: none; /* Eliminar borde de enfoque */
        color:lightgray;
    }

#cenMensajes {
    display: none; /* Lo dejamos oculto por defecto */
    margin-top: 20px;
    border-radius: 5px;
}

    #cenMensajes .alert {
        font-size: 1.1em;
        padding: 15px;
    }

/* Modal específico para el modal "Detalle" */
.modal-detalle .modal-content {
    background-color: #f0f8ff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Cabecera del modal "Detalle" */
.modal-detalle .modal-header {
    background-color: #87CEFA;
    color: white;
    border-bottom: 2px solid #1E90FF;
    padding: 20px;
}

    .modal-detalle .modal-header .btn-close {
        color: white;
        background: none;
        border: none;
    }

/* Título del modal "Detalle" */
.modal-detalle .modal-title {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Cuerpo del modal "Detalle" */
.modal-detalle .modal-body {
    font-size: 1rem;
    background-color: #f0f8ff;
    padding: 20px;
}

/* Estilo de la tabla dentro del modal "Detalle" */
.modal-detalle .table {
    border-collapse: collapse;
    width: 100%;
}

    .modal-detalle .table th {
        background-color: #1E90FF;
        color: white;
        font-weight: bold;
    }

    .modal-detalle .table td {
        background-color: #f9f9f9;
    }

    /* Filas y celdas de la tabla del modal "Detalle" */
    .modal-detalle .table th, .modal-detalle .table td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: center;
    }

    /* Fila de la tabla cuando pasa el mouse en el modal "Detalle" */
    .modal-detalle .table tbody tr:hover {
        background-color: #f0f8ff;
        cursor: pointer;
    }

/* Botón de cerrar del modal "Detalle" */
.modal-detalle .modal-close {
    background-color: #1E90FF;
    color: white;
    border: none;
    font-size: 1.25rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    .modal-detalle .modal-close:hover {
        background-color: #4682b4;
    }

/* Responsividad para pantallas pequeñas */
@media (max-width: 767px) {
    .modal-detalle .modal-dialog {
        margin: 20px;
    }

    .modal-detalle .modal-title {
        font-size: 1.8rem;
    }
}

/* definiciones para lectura y escritura*/
.input_captura {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    color: #495057;
}

/* Campo Informativo (Solo Lectura) */
.input_info {
    background-color: #e9ecef; /* Gris claro */
    border: 1px solid #ced4da;
    color: #6c757d; /* Texto más tenue */
    cursor: not-allowed; /* Indica que no es editable */
}

.contenedor_info {
    background-color: #e9ecef; /* Gris claro */
    border: 1px solid #ced4da;
    color: #495057; /* Texto gris oscuro */
    padding: 15px;
    border-radius: 4px;
}


.contenedor_captura {
    /* Evitar problemas de scroll durante la captura */
    overflow: hidden;
    /* Asegurar dimensiones precisas si es necesario */
    box-sizing: border-box;
    /* Evitar que aparezcan elementos innecesarios */
    background-color: white; /* O transparente, según el requerimiento */
    color: black;
    /* Asegurar que la captura tome todo el espacio interno */
    width: 100%;
}


.ajs-notifier.ajs-bottom.ajs-center {
    width: 100%;
    left: 0;
    transform: none;
    padding: 0;
}

    .ajs-notifier.ajs-bottom.ajs-center .ajs-message {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        text-align: center;
    }

