:root {
    -webkit-tap-highlight-color: transparent; /* 아이폰 이미지 저장 막기 */
    color-scheme: light only;
    --theme-bg: #FCF9F6;
    --point-color: #FFDB86;
    --close-btn-bg: #FFDB86;
    --txt-color: black;
  }

  * {
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Arial', sans-serif;
    background-color: #F7F7F7;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container {
    width: 100%;
    background-color: #F7F7F7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    height: 100vh;
  }

  .header {
    font-weight: 700;
    text-align: center;
    background-color: var(--point-color);
    padding: 16px;
    padding-bottom: 50px;
    height: 65px;
    font-size: x-large;
  }

  .fortune-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 12px;
    border-radius: 10px;
    margin: 16px 0;
    box-shadow: 0px 4px 11px 0px #0000000D;
    height: 60px;
  }

  .fortune-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .fortune-icon {
    width: 70px;
    height: 70px;
  }

  .calendar-container {
    margin: 16px 0;
    text-align: center;
  }

  .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    margin-top: 22px;
    word-spacing: 10px;
  }

  .calendar-header button {
    background-color: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transform: scale(0.7, 1.3);
  }

  .calendar-header span {
    font-size: 16px;
    font-weight: bold;
  }

  table {
    background-color: white;
    width: 100%;
    border-collapse: collapse;
  }

  th, td {
    padding: 10px;
    text-align: center;
  }

  th {
    font-weight: 300;
  }

  td {
    cursor: pointer;
  }

  /* 테이블 경계선 제거 */
  table, th, td {
    border: none;
    border-radius: 8px;
  }

  .confirm-button {
    width: 100%;
    background-color: #E4E9F4;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    height: 3.6rem;
  }


  .asp-container {
    text-align: center;
    height: 100px;
  }


  .wrapper1 {
    position: relative;
    top: -57px;
    width: 83%;
    margin: 0 auto;
  }

  .selected-date {
    background-color: var(--point-color);
    border-radius: 50px;
  }
