/* workshop.css */

.slide-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #c0392b;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(192, 57, 43, 0.35);
  transition: all 0.2s ease;
}

.btn-pdf:hover {
  background: #a93226;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.5);
  color: white;
}

.btn-slides {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  color: #2c3e50;
  border: 2px solid #2c3e50;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.btn-slides:hover {
  background: #2c3e50;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slide-frame {
  width: 85%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slide-frame iframe {
  border: none;
  display: block;
  width: 100%;
  height: 500px;
}