/* ===== STEP1 サイズバリデーション用CSS ===== */

/* エラーメッセージ（初期非表示） */
.text-error {
    display: none;
    color: #ff0000;
}

/* ===== プレビューCanvas ===== */
#preview_canvas {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto;
    background-color: #ffffff;
}

/* アップロードエラーメッセージ */
#upload_error {
    margin-top: 10px;
}

/* エラーメッセージコンテナ */
.size-error-container {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff5f5;
    border: 1px solid #ffcccc;
    border-radius: 4px;
}

/* 個別のエラーメッセージ */
.size-error-item {
    color: #cc0000;
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0;
    padding-left: 5px;
}

.size-error-item:before {
    content: "※ ";
}
