
body { font-family: Arial; background:#f4f6f9; text-align:center; margin:0; }
.calendar-header { display:flex; justify-content:center; gap:20px; }
#calendar { display:grid; grid-template-columns:repeat(7,1fr); max-width:700px; margin:20px auto; gap:5px; }
.day { padding:10px; background:white; border-radius:6px; cursor:pointer; }
.weekend { color:red; }
.booked { background:#ffcccc; }
.confirmed { background:#90ee90; }
.hidden { display:none; }
form { max-width:400px; margin:20px auto; }
input, select { width:100%; margin:8px 0; padding:8px; }
button { padding:8px 12px; background:#1e90ff; color:white; border:none; border-radius:4px; cursor:pointer; }
.address-box { display:flex; gap:5px; }
@media (max-width:600px){ .address-box{flex-direction:column;} }
#table {
  width: 800px;              /* 테이블 가로 크기 */
  margin: 0 auto;            /* 가운데 정렬 */
  border-collapse: collapse; /* 이중선 제거 */
}

#table th, #table td {
  border: 1px solid #ccc;    /* 얇은 선 */
  padding: 6px;
  text-align: center;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;

  background-image: url("images/main1.png"); /* 이미지 파일명 */
  background-size: cover;       /* 화면 꽉 채우기 */
  background-position: center;  /* 가운데 정렬 */
  background-repeat: no-repeat; 
  background-attachment: fixed; /* 스크롤해도 고정 */
}

