/* ドラッグ＆ドロップの範囲の見た目 */
.drag-drop-area {
    border: 2px dashed #cccccc;
    border-radius: 8px;
    padding: 50px;
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ドラッグ＆ドロップで選択範囲の色を変化 */
.drag-drop-area.dragging {
    background-color: #f0f8ff;
    border-color: #007bff;
}

/* カスタムファイル入力の見た目を改善 */
.full-width-input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

/* カスタムラベルの見た目を整える */
.full-width-label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}