.dropzone__item-preivew, .file-uploaded {
    width: 96px;
    height: 96px;
    position: relative;
}

.dropzone__item-preivew .dropzone__item-preivew-img, .file-uploaded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropzone__item-preivew .btn-remove-preview-item, .file-uploaded .remove-file {
    position: absolute;
    top: 1px;
    right: 2px;
}

.dropzone__item-tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    text-align: center;
    color: #ffffff;
}

.btn-remove-preview-item, .file-uploaded .remove-file {
    cursor: pointer;
}

.modal.show #btn-submit:disabled .spinner-border {
    display: inline-block !important;
}

/* Drag & Drop Effects */
.dropzone {
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropzone:hover {
    border-color: #5e72e4 !important;
    background-color: rgba(94, 114, 228, 0.02);
}

.dropzone-active {
    border-color: #5e72e4 !important;
    border-width: 2px !important;
    background: linear-gradient(135deg, rgba(94, 114, 228, 0.05) 0%, rgba(130, 94, 228, 0.05) 100%);
    box-shadow: 0 4px 20px rgba(94, 114, 228, 0.2);
}

.dropzone-active .none-file {
    color: #5e72e4 !important;
    font-weight: 600;
    transform: translateY(-50%) scale(1.05) !important;
}

/* Preview Item Animation */
.dropzone__item-preivew {
    animation: fadeInScale 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dropzone__item-preivew:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading Spinner in Preview */
.dropzone-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

/* Remove Button Hover Effect */
.btn-remove-preview-item {
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-preview-item:hover {
    opacity: 1;
    transform: scale(1.2);
    background: rgba(255, 255, 255, 1);
}

.file-uploaded .remove-file {
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-uploaded .remove-file:hover {
    opacity: 1;
    transform: scale(1.2);
    background: rgba(255, 255, 255, 1);
}

/* Multiple File Indicator */
.dropzone-file-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(94, 114, 228, 0.4);
    z-index: 15;
}

/* None File Text Animation */
.none-file {
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropzone:hover .none-file {
    opacity: 0.8 !important;
}