/* Google Calendar Embed - Professional Styling */

.calendar-embed-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
}

.calendar-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #242424;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-embed-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.calendar-embed-actions {
  display: flex;
  gap: 12px;
}

.calendar-embed-wrapper {
  flex: 1;
  position: relative;
  background: #121212;
  overflow: hidden;
  min-height: 600px;
}

.calendar-embed-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #121212;
}

.calendar-embed-footer {
  padding: 12px 24px;
  background: #242424;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.calendar-embed-note {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .calendar-embed-header {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .calendar-embed-actions {
    width: 100%;
  }
  
  .calendar-embed-actions button {
    flex: 1;
  }
  
  .calendar-embed-wrapper {
    min-height: 500px;
  }
}
