
/* Drop Zone Styles */
.drop-zone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 92, 231, 0.95);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drop-zone.active {
    opacity: 1;
    pointer-events: all;
}

.drop-message {
    text-align: center;
    color: white;
}

.drop-message i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.drop-message p {
    font-size: 1.5rem;
    font-weight: bold;
}
