/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* box聯絡通訊ID填寫框*2+電話填寫框*2 */
.input-container {
    display: flex;
    align-items: center; /* 確保子元素垂直居中 */
    justify-content: space-between; /* 在元素間創建等距空間 */
  }
  
  .country-code {
    width: 50%; /* 設定下拉菜單的寬度 */
    margin-right: 10px; /* 設定右邊距以產生空間 */
  }
  
  .phone-input {
    width: 50%; /* 設定輸入框的寬度 */
  }  
/* ------------------------------------------------- */
/* box新增備註(下拉) */
.note-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease;
}

.note-content.open {
    height: 200px; /* 設定展開時的高度 */
    opacity: 1;
}

/* ------------------------------------------------- */
/* box下拉的長度限制 */
#time {
    max-height: 200px; /* 限制下拉菜单的最大高度 */
    overflow-y: auto;  /* 超出部分显示滚动条 */
  }

/* ------------------------------------------------- */