#imagenModal .btn-close {
    opacity: 1;
    font-size: 1.5rem;
     background-color: white;
    
}

#imagenModal .btn-close:hover {
    opacity: 1;
    font-size: 1.5rem;
     background-color: #2a2a2a;
    
}

#imagenModal .btn {
    opacity: 1 !important;
}

#imagenModal .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 80vh;
}

#imagenModal .d-flex {
    position: absolute;
    width: 105%;
    top: 80%;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    
}

#imagenModal .d-flex button {
    pointer-events: auto;
    z-index: 2;
    opacity: 0.8;
    transition: all 0.3s;
    background-color: #2a2a2a;
    border: none;
    color: white;
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#imagenModal .d-flex button:hover {
    opacity: 1;
    color: #ffdb67;
}

#imagenModal .d-flex button:disabled {
    visibility: hidden;
}


@media (max-width: 992px) {
    #imagenModal .modal-body {
        padding-bottom: 100px; /* Espacio para los botones abajo */
    }

    #imagenModal .d-flex {
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row; /* Asegura disposición horizontal */
    }

    #imagenModal .d-flex button {
        position: relative;
        width: 45%;
        margin: 0 5px;
    }

    #imagenModal img {
        max-height: calc(90vh - 100px) !important;
    }
}