﻿/* Change background color and border */
.dropzone {
    background: #f8f9fa;
    border: 2px dashed #007bff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #555;
}

    /* Change text style */
    .dropzone .dz-default.dz-message {
        font-size: 18px;
        color: #007bff;
        font-weight: bold;
    }

    /* File preview area */
    .dropzone .dz-preview {
        margin: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 5px;
        background: #ffffff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }

        /* File name styling */
        .dropzone .dz-preview .dz-filename {
            font-size: 14px;
            color: #333;
        }

        /* Progress bar customization */
        .dropzone .dz-preview .dz-progress {
            background: #f8f9fa;
            height: 5px;
            border-radius: 2px;
            overflow: hidden;
        }

            .dropzone .dz-preview .dz-progress .dz-upload {
                background: #007bff;
                height: 100%;
            }

        /* Remove file link */
        .dropzone .dz-preview .dz-remove {
            font-size: 12px;
            color: red;
            text-decoration: underline;
            cursor: pointer;
        }

    /* Hover effect */
    .dropzone:hover {
        background: #e9ecef;
        border-color: #50cd89;
    }

@media (max-width: 768px) {
    .dropzone {
        font-size: 14px;
        padding: 10px;
    }

        .dropzone .dz-default.dz-message {
            font-size: 16px;
        }
}

.dropzone .dz-preview .dz-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin: auto;
}

    .dropzone .dz-preview .dz-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dropzone .dz-message .dz-button {
    color: #50cd89 !important;
}
