#adn33-uploader-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
#adn33-modal-content {
    background: #fff;
    margin: auto;
    padding: 30px 30px 40px 30px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
}
#adn33-close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}
#adn33-close-modal:hover {
    color: #000;
}
.adn33-grid-upload {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
}
/* Estilos para cuando solo hay un upload */
.adn33-grid-upload.single-upload {
    justify-content: center;
}
.adn33-box-upload {
    width: 140px;
    height: 140px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #bbb;
    outline: none;
}
/* Forzar el ancho al 100% cuando es single-upload */
.adn33-grid-upload.single-upload .adn33-box-upload {
    width: 100% !important;
    max-width: 300px !important;
}
.adn33-box-upload:focus,
.adn33-box-upload:active,
.adn33-box-upload:hover {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px #dfffe0;
}
.adn33-label {
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
    text-align: center;
}
.adn33-desc {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    padding: 0 10px;
    text-align: center;
}
.adn33-check {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    padding: 3px 8px;
    border: 2px solid #2ecc71;
    border-radius: 8px;
    background-color: #dfffe0;
    color: #2ecc71;
}
#adn33-next-btn {
    margin-top: 35px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    transition: all 0.3s ease;
}
#adn33-next-btn.adn33-btn-enabled {
    background-color: #27ae60;
    color: white;
    cursor: pointer;
}
.adn33-next-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
#adn33-modal-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
}
#adn33-modal-content h2 span {
    display: block;
    font-size: 13px;
    margin-top: 4px;
    color: #666;
    font-weight: normal;
}
