  #calendar-section {
    max-width: 400px;
    margin: 30px auto;
  }

  .datepicker-box {
    text-align: center;
    margin-bottom: 30px;
  }

  .datepicker-box input {
    width: 160px;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #aaa;
    border-radius: 4px;
  }

	#datepicker-inline {
	  display: inline-block;
	  margin: 0 auto;
	}

	.datepicker-box {
	  text-align: center; /* 부모 요소에서 중앙 정렬 */
	}

  .time-select-box {
    text-align: center;
    margin-top: 20px;
  }

  .time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    justify-items: center;
    max-width: 300px;
    margin: 20px auto;
  }

  .time-grid label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    cursor: pointer;
  }

  .time-grid input[type="radio"] {
    transform: scale(1.2);
    accent-color: red;
  }

  .legend {
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
  }

  .legend span {
    margin-right: 10px;
  }

  .btn-confirm {
    display: inline-block;
    margin-top: 30px;
    background: #0a4fb4;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    border: none;
  }

  /* 예약된 시간 비활성화 */
  .reserved {
    color: red !important;
    pointer-events: none;
  }