.drop-zone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 249, 250, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    border: none;
    transition: all 0.3s ease;
}

.drop-zone.drag-over {
    display: flex;
}

.drop-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.drop-zone-content i {
    font-size: 4rem;
    color: #0d6efd;
}

.drop-zone-content p {
    color: #212529;
    font-size: 1.25rem;
    margin: 0;
} 