* {
    box-sizing: border-box;
  }  
/* メンバーログイン */
.custom-form{
    display: flex;    
    padding: 10rem 0;
}
.custom-form-box{
    margin: auto;
    
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  
    width: 100%;
    max-width: 300px;
    padding: 10px 12px;
    font-size: 1.5rem;
    color: #00507e;
    background-color: transparent;
    border: 2px solid #00507e;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2210%22%20height%3D%225%22%20viewBox%3D%220%200%2010%205%22%3E%3Cpath%20fill%3D%22white%22%20d%3D%22M0%200l5%205%205-5z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
  
    cursor: pointer;
    transition: all 0.3s ease;
  }
    input[type="password"]{
    appearance: none;
    -webkit-appearance: none; /* Chrome, Safari, iOS など WebKit系ブラウザ */
    -moz-appearance: none;    /* Firefox (Geckoエンジン) */

    width: 100%;
    max-width: 300px;
    padding: 10px 12px;
    font-size: 1.5rem;
    border: 2px solid #00507e;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

  }
  /* 管理者CSS */
  .styled-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #00507e;
  }
  
  .styled-table th,
  .styled-table td {
    border: 1px solid #00507e;
    padding: 10px;
    text-align: left;
    font-size: 1.4rem;
  }
  
  .styled-table thead {
    background-color: #00507e;
    color: white;
  }
  .admin .base-h4{
    color: #000;
    text-align: left;
  }
  .admin-reason{
    max-width: 100px;
  }
  /* メンバーページ */
  .event-block{
    display: flex;
    margin: 1rem 0;
  }
  .event-block>div{
    display: flex;
  }
  .event-day{
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1rem;
    padding-right: 3rem;
    border-right: 2px solid #00507e;
    width: 90%;
    max-width: 400px;
  }
  .event-radio-box{
    display: flex;
    gap: 1rem;
    margin-left: 3rem;
  }
  input[type="radio"] {
    transform: scale(1.5);
}
  .event-radio-box>div{
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .event-radio-box span{
    font-size: 1.5rem;
    display: flex;
    align-items: center;
  }
  .reason-txt{
    font-size: 1.5rem;
    border: 2px solid #00507e;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .other-reason {
    display: flex;
    align-items: center;
    margin: 0 1rem;
  }
  .mp-hed{
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: end;
  }
  .mp-hed-txt{
    font-size: 1.8rem;
  }
.table-wrapper {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid #ccc;
}

.styled-table {
  min-width: 700px;
  border-collapse: collapse;
  width: 100%;
}

.styled-table th,
.styled-table td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ccc;
}

/* カラム幅 */
.mp-table-name {
  width: 25%;
}
.mp-table-status {
  width: 15%;
}
.mp-table-reason {
  width: 60%;
}
/* プロフィール */
.profile ul{
  list-style: none;
}
.profile-txt{
  border-bottom: 2px solid #00507e;
}
.profile ul a{
  color: #000;
  background: #eaeaea;
  width: 100%;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
}
/* 出欠入力管理 */
.admin-plan{
  height:auto;
  padding: 5rem 0;
  display: flex;
}
.sch-form{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.schedule-entry {
    border-top: 2px solid #00507e;
}
.weekday{
  width: 80px;
  text-align: center;
}
.add-lose-box{
  display: flex;
  gap: 0.2rem;
}
.add-lose-btns{
  border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sch-btns-box{
  display: flex;
  gap: 1rem;
}
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.bordered-table {
  min-width: 800px;
    border-collapse: collapse;
    width: 100%;
}
.table-wrapper input[type="date"],
.table-wrapper input[type="time"],
.table-wrapper input[type="text"],
.table-wrapper select {
    border: 2px solid #004B75;       /* 太めの青枠 */
    border-radius: 12px;             /* 角丸 */
    padding: 8px 12px;               /* 内側の余白 */
    font-size: 16px;                 /* 文字サイズ */
    color: #004B75;                  /* 文字色（濃い青） */
    font-weight: 600;                /* やや太字 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* ほんのり影 */
    width: 100%;                     /* セル内で広がる */
    box-sizing: border-box;
    appearance: none;                /* ネイティブUIを少し抑制 */
}

.bordered-table th,
.bordered-table td {
    border: 1px solid #333;
    padding: 8px;
}
.schedule-entry td input {
    width: 100%;
    box-sizing: border-box;
}
.delete-btn{
  background: #ff0000;
  color: #fff;
}
.delete-btn:hover{
  color: #ff0000;
  background: transparent;
  border: 1px solid #ff0000;
}
/* 予定入力 */
@media(max-width:600px){
  .event-block{
    flex-direction: column;
  }
  .event-block>div{
    margin: 0.5rem 0;
    flex-direction: column;
  }
  .event-radio-box{
    margin: 0.5rem 0;
  }
  .event-day{
    width: 100%;
    border: none;
    border-bottom: 2px solid #00507e;
    font-size: 1.6rem;
  }
  .other-reason {
    margin: 0.5rem 0;
  }
  .mp-hed {
    flex-wrap: wrap;
    gap: 1rem;
}

}


