/* Modal Anexar Documento - Drag & Drop Custom Styles */
.anexo-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 130px; 
    border: 1px dashed #d9d9d9; 
    border-radius: 4px; 
    cursor: pointer;
    background: #fafafa; 
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    padding: 15px;
    text-align: center;
}

.anexo-dropzone:hover {
    background: #ffffff; 
    border-color: #4395D1; 
}

.anexo-dropzone.dropzone--active {
    background: #f5f9fc;
    border-color: #4395D1;
    border-style: solid;
    box-shadow: 0 0 5px rgba(67, 149, 209, 0.3);
}

.anexo-dropzone__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.anexo-dropzone__content i {
    font-size: 32px !important; 
    color: #a0a0a0; 
    transition: color 0.15s ease-in-out;
}

.anexo-dropzone:hover .anexo-dropzone__content i {
    color: #4395D1; 
}

.anexo-dropzone__text {
    font-size: 13px;
    font-weight: 500;
    color: #676a6c; 
}

.anexo-dropzone__subtext {
    font-size: 11px;
    color: #999999;
}

.anexo-preview {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d9d9d9; 
    border-radius: 4px;
    padding: 10px 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
}

/* Painel Lateral (Layout de Prancheta) */
.upload-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px -25px -25px -25px; 
}

.upload-sidebar {
    background-color: #f9fafc; 
    border-bottom: 1px solid #e7eaec;
    padding: 20px 25px 25px 25px;
    width: 100%;
}

.upload-main {
    padding: 20px 25px 25px 25px;
    width: 100%;
}

@media (min-width: 992px) {
    .upload-sidebar {
        width: 33.333333%; 
        border-right: 1px solid #e7eaec;
        border-bottom: none;
        min-height: 200px;
    }
    
    .upload-main {
        width: 66.666667%; 
    }
}

