.submitButton {
    padding: 15px 30px;
    font-size: 22px;
    background: linear-gradient(to bottom, #cccccc, #999999);
    border: 1px solid #888;
    border-radius: 8px;
    color: #333;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: 15px;
    margin-top: 50px;
}  

#submitButton:hover {
    background: linear-gradient(to bottom, #bbbbbb, #888888);
}

input,
select {
    width: 200px;
    /* 幅を200pxに設定 */
    padding: 10px;
    /* 内側の余白を10pxに設定 */
    margin-bottom: 15px;
    /* 下部のマージンを15pxに設定 */
    font-size: 16px;
    /* フォントサイズを16pxに設定 */
}

/* 誕生日の入力用モーダル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.modal-buttons button {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #1976d2;
    color: white;
}

.modal-buttons button:last-child {
    background: #aaa;
}

  
  /* ダークモード時のモーダル背景と文字色 */
  html.dark-mode .modal-content {
    background-color: #1a1a1a;
    color: #f0f0f0;
  }
  
  /* 入力フィールドも暗くする */
  html.dark-mode .modal-content input[type="date"] {
    background-color: #2a2a2acc;
    color: #f0f0f0;
    border: 1px solid #555;
  }
  
  /* ボタンの色調整（任意） */
  html.dark-mode .modal-content button {
    background-color: #444;
    color: #fff;
    border: 1px solid #777;
  }
  
  html.dark-mode .modal-content button:hover {
    background-color: #666;
  }
  

/* スマートフォンや小さいデバイス用のスタイル */
@media (max-width: 768px) {
    .submitButton {
        display: block;
        margin-left: auto;
        margin-right: auto;
        font-size: 17px;
    }  

}