.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;
}