.programTable {
  border-collapse: collapse;
  width: 100%;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  margin-top: 30px;
  text-align: center;
}

.programTable th {
  background: #ebebebbe;
  color: black;
  padding: 14px;
  font-size: 15px;
  border: 1px solid #dee2e6;
}

.programTable td {
  border: 1px solid #ddd;
  padding: 12px;
  vertical-align: middle;
  font-size: 14px;
}

.programTable tr:nth-child(even) {
  background-color: #f9f9f9;
}

.programTable tr:hover {
  background-color: #e9eef6;
}

.programTable .applyCell a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007acc;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none !important;
  font-weight: 600;
  transition: background-color 0.3s;
}

.programTable .applyCell a:hover {
  background-color: #005f99;
}

/* 🔗 링크 없음 텍스트 */
.programTable .no-link {
  color: gray;
  font-weight: 500;
}

/* 추가 */
.apply-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #007acc;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  font-size: 15px;
  transition: background .2s;
}
.apply-btn:hover { 
  background: #509ed3; 
  color: #fff;  
}

.close-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #aaa;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  cursor: not-allowed;
}
h1 {
    color: #383838;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 400;
    font-size: 40px;
    font-weight: 400;
    line-height: 64px;
    margin: 0;
    padding: 20px 30px 0;
    text-align: center;
    letter-spacing: -1px;
}

  .headLine {
    border-top: 1px solid #505050;
    display: block;
    margin-top: 50px;
    padding-top: 40px;
    position: relative;
  }

  .read-more {
    background: #505050;
    border-radius: 50%;
    border: 10px solid #fdfdfd;
    color: #fff;
    display: block;
    font-size: 30px;
    font-weight: normal;
    height: 70px;
    width: 70px;
    line-height: 70px;
    margin: 0 auto;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .bi::before{
    top: -10px;
    position: relative
  }

  

@media (max-width: 820px) {
  .programTable, .programTable thead, .programTable tbody, .programTable tr, .programTable th, .programTable td {
    display: block !important;
    width: 100% !important;
  }
  .programTable thead tr { display: none !important; }
  .programTable tr {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 1px 8px 0 #0001;
    padding: 16px 0;
  }
  .programTable td {
    text-align: left;
    border: none !important;
    position: relative;
    padding-left: 40%;
    font-size: 15px;
    min-height: 36px;
    text-align: center;
  }
  .programTable td:before {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 38%;
    white-space: nowrap;
    font-weight: bold;
    color: #4e4e7e;
    font-size: 15px;
  }
  .programTable td.col-title:before { content: "제목"; }
  .programTable td.col-date:before { content: "기간"; }
  .programTable td.col-apply-count:before { content: "신청자수"; }
  .programTable td.col-limit:before { content: "정원"; }
  .programTable td.col-detail:before { content: "프로그램안내"; }
  .programTable td.col-apply:before { content: "신청하기"; }

  .apply-btn, .close-btn {
    display: block;
    width: 80%;
    margin: 10px auto;
    font-size: 16px;
    padding: 10px 0;
  }
}