/* Dropzone Styles */
.dropzone,
.empresa-dropzone-container {
    border: 2px dashed #d1d5db !important;
    border-radius: 8px !important;
    background-color: #f9fafb !important;
    padding: 20px !important;
    min-height: 160px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropzone:hover,
.empresa-dropzone-container:hover {
    border-color: #9ca3af !important;
    background-color: #f3f4f6 !important;
}

.dropzone .dz-message {
    font-size: 14px !important;
    color: #6b7280 !important;
    margin: 2em 0 !important;
    text-align: center;
}

.dropzone .dz-message .dz-button {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
}

.dropzone .dz-preview {
    margin: 16px !important;
    position: relative;
}

.dropzone .dz-preview .dz-image {
    border-radius: 8px !important;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.dropzone .dz-preview .dz-details {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px !important;
    padding: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.dropzone .dz-preview .dz-filename {
    font-size: 12px;
    color: #374151;
    margin-bottom: 4px;
}

.dropzone .dz-preview .dz-size {
    font-size: 11px;
    color: #6b7280;
}

.dropzone .dz-preview .dz-progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    height: 100%;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.dropzone .dz-preview .dz-remove {
    font-size: 12px !important;
    color: #ef4444 !important;
    text-decoration: none !important;
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ef4444;
}

.dropzone .dz-preview .dz-remove:hover {
    background-color: #ef4444;
    color: white !important;
    text-decoration: none !important;
}

.dropzone .dz-preview .dz-error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fee2e2;
    color: #dc2626;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #fecaca;
}

.dropzone .dz-preview.dz-error .dz-image {
    border: 2px solid #ef4444;
}

.dropzone .dz-preview.dz-success .dz-image {
    border: 2px solid #10b981;
}

/* Empresa Imagen Container */
.empresa-imagen-container {
    text-align: center;
    margin-top: 16px;
}

.empresa-imagen-container img {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 160px;
    max-height: 160px;
    object-fit: cover;
    border-radius: 8px; 
    border: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .dropzone {
        min-height: 120px !important;
        padding: 16px !important;
    }
    
    .dropzone .dz-message {
        font-size: 13px !important;
        margin: 1.5em 0 !important;
    }
    
    .dropzone .dz-preview .dz-image {
        width: 100px;
        height: 100px;
    }
}