/* Dropzone Styles */
#drop-area {
    transition: background 0.3s ease-in-out;
    cursor: pointer;
}

.dropzone {
    width: 100%;
    max-width: 70%;
    margin: 1.5rem auto;
    border: none;
    cursor: pointer;
    background: #efeef3;
    padding: 2rem;
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.dropzone:hover {
    background: #e8e7ed;
}

.dropzone .dz-preview.dz-image-preview {
    background: transparent;
    z-index: unset !important;
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
    margin-top: 15px;
    padding: 8px 16px;
    background: #5271ff;
    color: white;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.dropzone .dz-preview .dz-remove:hover {
    background: #3d5ae8;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .dropzone {
        padding: 1.2rem;
        min-height: 120px;
        max-width: 95vw;
    }
    .dropzone .dz-preview .dz-remove {
        font-size: 13px;
        padding: 7px 12px;
    }
}

@media screen and (max-width: 480px) {
    .dropzone {
        padding: 0.7rem;
        min-height: 80px;
        max-width: 98vw;
        margin: 1rem auto;
    }
    .dropzone .dz-preview .dz-remove {
        font-size: 12px;
        padding: 6px 10px;
    }
    .dropzone, #drop-area {
        font-size: 15px;
    }
    .convert-btn, .comment-btn, .resize-btn, .crop-submit-btn, .cta-btn, .crop-download-btn, .crop-another-btn {
        width: 100%;
        font-size: 1rem;
        margin: 0.5rem 0 0 0;
        box-sizing: border-box;
    }
} 