#video-rec-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-family: arial, sans-serif;
  font-size: 14px;
  z-index: 9999;
}

.video-rec-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  border-bottom: 1px solid #ddd;
  border-radius: 8px 8px 0 0;
  padding: 10px 14px;
  font-weight: bold;
}

.video-rec-close {
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  padding: 0 4px;
}

.video-rec-close:hover {
  color: #000;
}

.video-rec-list {
  padding: 10px 14px;
}

.video-rec-item {
  margin-bottom: 14px;
}

.video-rec-item:last-child {
  margin-bottom: 4px;
}

.video-rec-item-title {
  display: block;
  color: #1a0dab;
  text-decoration: underline;
  font-size: 15px;
  margin-bottom: 2px;
}

.video-rec-item-title:hover {
  color: #660099;
}

.video-rec-item-url {
  color: #000000;
  font-size: 12px;
  margin-bottom: 3px;
}

.video-rec-item-desc {
  color: #4d5156;
  font-size: 13px;
  line-height: 1.3;
}
