<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === Calendar Container === */
#dvc-calendar {
  max-width: 1000px;
  margin: 0 auto;
  font-family: sans-serif;
}

/* === Calendar Grid === */
.calendar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.month {
  flex: 1 1 22%;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
}

.month h3 {
  text-align: center;
  margin-bottom: 10px;
}

.days {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.day {
  background: #f0f0f0;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.day:hover {
  background: #0073aa;
  color: #fff;
}

/* === Modal === */
#dvc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-inner {
  background: white;
  width: 600px;
  max-width: 95%;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

#dvc-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* === Category Buttons === */
#dvc-options {
  text-align: center;
  margin-bottom: 20px;
}

.dvc-option {
  background: #008cba;
  color: white;
  border: none;
  margin: 5px;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.dvc-option:hover {
  background: #005c8a;
}

/* === Content Area === */
#dvc-content {
  font-size: 16px;
  line-height: 1.5;
}

/* === View Full Post Button === */
.dvc-view-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #0073aa;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.dvc-view-button:hover {
  background-color: #005c8a;
}


/* === Listen Button Placeholder === */
.dvc-listen-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #0073aa;
  margin-left: 10px;
  background: #444;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.dvc-listen-button:hover {
  background: #222;
}
</pre></body></html>