/* ===== 個人データ編集ページのスタイル ===== */
#studentEditForm {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 30px auto;
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 480px) {
    #studentEditForm {
      padding: 15px;
      margin: 20px 10px;
    }
  }
  
  /* 個人データ編集ページの見出し */
  #studentEditForm h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
  }
  
  /* フォーム要素のレイアウト */
  #studentEditForm .input-group {
    margin-bottom: 15px;
  }
  
  #studentEditForm .input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
  }
  
  #studentEditForm .input-group input,
  #studentEditForm .input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  /* 保存ボタンのスタイル（共通） */
  #studentEditForm .button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
  }
  
  #studentEditForm .button:hover {
    background-color: #45a049;
  }
  
  /* 戻るリンクのスタイル（共通） */
  #studentEditForm .link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #007BFF;
    cursor: pointer;
  }
  
  #studentEditForm .link:hover {
    text-decoration: underline;
  }
  