@charset "utf-8";
/* SIR 지운아빠 */  

@import url('https://cdn.jsdelivr.net/npm/galmuri@latest/dist/galmuri.css');

.schedule-list {
  display: grid;
  grid-template-columns: 50px 1fr;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  max-width: 250px;        /* 최대 너비 */
  box-sizing: border-box;

  /* ✅ 박스 스타일 */
  border: 1px solid #555;  /* 진회색 테두리 */
  border-radius: 0 0 6px 6px;     /* 둥근 모서리 */
  background: #f6f6f6;        /* 흰색 배경 */

 /* ✅ 폰트 통일 */
  font-family: 'Galmuri11', monospace;
  font-size: 11px;
  line-height: 1.5;

}

/* 일정 없을때 멘트 없이 달력 가운데로 오도록 */
/*	
.schedule-list.empty {grid-template-columns: 1fr 0;justify-items:center;}
.schedule-list.empty .today-sched {display:none;}
*/

.schedule-list .today {
  position: relative;
  display: block;
  min-width: 50px;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  padding-top: 14px;
  text-align: center;
}
.schedule-list .today::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('./ico_cal_black.png') no-repeat;
}
.schedule-list .today .month {
  display: block;
  line-height: 12px;
  height: 13px;
  font-family: 'dotum', sans-serif;
  font-size: 10px;
}
.schedule-list .today .date {
  display: block;
  width: 46px;
  height: 22px;
  line-height: 20px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
}

.today-sched {
  position: relative;
  text-align: left;
  padding: 5px 15px;
}
.today-sched p {
  position: relative;
  padding-left: 14px;
  line-height: 20px;
}
.today-sched .ico {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.empty .today-sched .ico {
  box-sizing: border-box;
  border: 1px solid #999;
}
.today-sched p strong {
  font-weight: normal;
  font-size: 12px;
}
.today-sched p span {
  font-size: 11px;
  white-space: nowrap;
}

.schedule-list .txt-light {
  opacity: 0.65;
}
.schedule-list .popup_opener {
  display: block;
}
.schedule-list .popup {
  display: none;
  position: absolute;
  padding: 10px;
  height: auto;
  left: 10px;
  right: 0;
  bottom: 21px;
  border-radius: 5px;
  background: #000;
}
.schedule-list .popup_opener:hover + .popup {
  display: block;
}

/*표시색상*/
.color_1{background:#777}
.color_2{background:#B3BDB3;}
.color_3{background:#dccfc0;}
.color_4{background:#f6f6f6;} 
