@charset "utf-8";
/* CSS Document */
.drop-zone {
    width: 250px;
    height: 100px;
    border: 2px dashed #007bff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background-color 0.3s;
    cursor: pointer;
    margin: 5px auto;
}

.drop-zone--over {
    background-color: #e0f7fa;
    border-color: #00bcd4;
}

