@import "variables.css";

.drop-area {
    background-color: #fff;
    border: 2px dashed var(--gray-dark);
    width: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.drop-area.active {
    border: 2px solid var(--gray);
}