/* #drop-area {
    border: 2px dashed #ccc;
    border-radius: 20px;
    width: 100%;
    height: 200px;
    text-align: center;
    padding: 85px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1vw;
}

#drop-area.highlight {
    border-color: purple;
} */

/* batas */

.drop-zone {
    width: 100%;
    height: 200px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 4px dashed #717171;
    border-radius: 10px;
    margin-bottom: 35px;
    position: relative;
    flex-direction: column;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 10px;
    text-align: center;
}

.drop-zone--over {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
}

.drop-zone__thumb {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.drop-zone__remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3333;
    opacity: 0;
    transition: opacity 0.2s;
}

.drop-zone__thumb:hover .drop-zone__remove {
    opacity: 1;
}

.drop-zone__remove:hover {
    background-color: white;
    color: #ff0000;
}

