/* Estilos generales */
.documentos-productos-box {
    background: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.documentos-productos-box h3 {
    margin-top: 0;
}

.documentos-productos-list {
    list-style: none;
    padding-left: 0;
}

.documentos-productos-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.document-name {
    font-weight: bold;
}

.document-status .uploaded {
    color: #4CAF50;
}

.document-status .missing {
    color: #F44336;
}

/* Modal */
.documentos-productos-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.documentos-productos-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.documentos-productos-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.documentos-productos-close-modal:hover {
    color: black;
}

.document-field {
    margin-bottom: 15px;
}

.document-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.document-current {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* Mi cuenta */
.documentos-productos-account table {
    width: 100%;
    margin-bottom: 20px;
}

.documentos-productos-account th {
    text-align: left;
    padding: 8px;
    background: #f5f5f5;
}

.documentos-productos-account td {
    padding: 8px;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}

/* Checkout */
#documentos_productos_checkout_fields {
    margin-bottom: 30px;
}

#documentos_productos_checkout_fields .uploaded {
    color: #4CAF50;
}

#documentos_productos_checkout_fields .missing {
    color: #F44336;
}