
.upload-img-area {
    width: 100%;
}

.upload-area {
    width: 100%;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: #999;
    transition: background 0.3s;
}

.upload-area.dragover {
    background-color: #f0f8ff;
    border-color: #333;
    color: #333;
}

input[type="file"] {
    display: none;
}

.preview-img {
    margin-top: 20px;
    max-width: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
}

.img-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-content {
    margin-top: 0;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.click-text-style {
    color: blue;
    cursor: pointer;
}