* {
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  margin: 0;
  background: #f7f9fb;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 10px;
}

.container {
  display: flex;
  max-width: 880px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

/* LEFT PANEL */
.left-panel {
  width: 38%;
  background: #fbfcfd;
  border-right: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 25px;
}

.back-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #555;
  cursor: pointer;
  align-self: flex-start;
  transition: 0.2s;
}

.back-btn:hover {
  color: #000;
}

.meeting-info {
  flex-grow: 1;
}

.host-name {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.meeting-info h2 {
  font-size: 22px;
  margin: 6px 0 25px;
  color: #1a1a1a;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: center;
  margin: 12px 0;
  color: #404040;
  font-size: 15px;
}

.icon {
  margin-right: 10px;
  font-size: 16px;
}

.cookie-settings {
  text-decoration: none;
  color: #2563eb;
  font-size: 14px;
  margin-top: 20px;
}

.cookie-settings:hover {
  text-decoration: underline;
}

/* RIGHT PANEL */
.right-panel {
  flex: 1;
  position: relative;
  padding: 45px 40px 55px;
}

.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #2d3748;
  color: #fff;
  font-size: 12px;
  padding: 5px 20px;
  transform: rotate(45deg);
  transform-origin: top right;
  width: 150px;
  text-align: center;
  top: 18px;
  right: -45px;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 19px;
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 24px;
}

.details-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.details-form input,
.details-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 15px;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.details-form input:focus,
.details-form textarea:focus {
  border-color: #2563eb;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.add-guests {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid #2563eb;
  background: #fff;
  color: #2563eb;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 25px;
  transition: 0.2s;
}

.add-guests:hover {
  background: #eff6ff;
}

.terms {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-top: 5px;
}

.terms a {
  color: #2563eb;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.schedule-btn {
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 22px;
  border: none;
  border-radius: 25px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.schedule-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}


.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: 1000;
  animation: fadeIn 0.3s ease forwards;
}

.hidden {
  display: none;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 90%;
  width: 400px;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #111827;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-panel {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .right-panel {
    padding: 35px 20px 45px;
  }

  .ribbon {
    display: none;
  }
}
