body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
}

input[type="text"], select, button {
    width: calc(100% - 22px); /* テキストボックスの幅を短く */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold; /* ボタンを太字に */
}

button:hover {
    background-color: #005bb5;
}

.checkbox-options {
    display: flex;
    flex-direction: column; /* 縦に並べる */
}

.price-range, .discount-range {
    margin: 15px 0;
}

/* モーダルスタイル */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#currentSettings {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

/* オプション設定のスタイル */
.options-container {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #f9f9f9;
    margin-top: 20px;
}

/* オプションボタンのスタイル */
button.option-button {
    background-color: #e0e0e0; /* 明るいグレー */
    color: #333; /* ダークグレーのテキスト */
}

button.option-button:hover {
    background-color: #b0b0b0; /* ホバー時に少し濃いグレー */
}

textarea {
    width: calc(100% - 22px); /* 幅を100%に設定 */
    padding: 10px; /* パディングを追加 */
    margin: 10px 0; /* マージンを設定 */
    border: 1px solid #ddd; /* ボーダーを設定 */
    border-radius: 5px; /* ボーダーの角を丸くする */
    resize: vertical; /* 縦方向のリサイズを許可 */
}