/* ===== BOTÓN CONTROL INTERNO ===== */
.btn-control-interno {
    display: inline-block;
    padding: 15px 25px;
    background-color: #7C9383;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-control-interno:hover {
        background-color: #6c757d;
        transform: scale(1.05);
        box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
        color: #fff;
    }


/* ===== IMAGEN CONTROL INTERNO ===== */
.imagen-ci {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.imagen-ci:hover {
    transform: scale(1.03);
}
/* LOS 5 COMPONENTES DE CONTROL INTERNO*/

.contenedor-botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn-ci {
    display: inline-block;
    padding: 12px 20px;
    background-color: #7C9383;
    color: white;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-ci:hover {
        background-color: #6c757d;
        transform: scale(1.05);
        box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
        color: white;
    }

/* ===== POPUP ===== */

#imgModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

    #imgModal img {
        max-width: 85%;
        max-height: 85%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    #imgModal .close {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 35px;
        color: white;
        cursor: pointer;
        font-weight: bold;
    }