/*Estilos generales*/
.asw-formulario-wrapper {
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 1px #7a7a7a40;
  border: 1px solid #e4e4e7;
}

.mt-2 {
  margin-top: 0.5rem;
}

.asw-formulario-header {
  padding: 1.5rem;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom: 1px solid #e4e4e7;
}

.asw-formulario-wrapper .asw-formulario-title {
  text-align: center;
  color: #004580;
  font-weight: bold !important;
  margin: 0;
  font-size: 28px;
}

.asw-formulario-wrapper .asw-formulario-title.fonedu {
  color: #423f40;
}

.asw-formulario-subtitle {
  text-align: center;
  color: #71717a;
  font-weight: 400 !important;
  margin: 0;
  font-size: 17px;
}

.asw-formulario-body {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
}

.seccion-amount {
  padding: 1rem;
  background-color: #f1f5f9;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  width: 100%;
}

.seccion-amount span {
  font-weight: 500;
  font-size: 14px;
}

.seccion-amount p {
  font-size: 24px;
  font-weight: 700;
  color: #09090b;
  margin: 0;
}

.asw-formulario {
  display: flex;
  flex-wrap: wrap;
}

.asw-formulario label {
  color: #09090b;
  font-weight: 500;
  margin: 0;
}

.asw-formulario label.error {
  color: red;
  font-size: 12px;
  font-weight: 400;
}

.asw-formulario input:not([type="checkbox"]),
.asw-formulario select,
.asw-formulario textarea {
  padding: 5px 10px;
  width: 100%;
  border-radius: 6px;
  margin: 0;
  border: 1px solid #e4e4e7;
  background-color: #fff;
  font-size: 16px !important;
  outline: none;
}

.asw-formulario input:disabled,
.asw-formulario select:disabled,
.asw-formulario textarea:disabled,
.asw-formulario input[readonly],
.asw-formulario select[readonly],
.asw-formulario textarea[readonly] {
  background-color: #f1f1f1;
  color: #b0b0b0;
  cursor: not-allowed;
  border-color: #d4d4d4;
  opacity: 1;
}

.asw-formulario input[type="file"] {
  padding-top: 7px;
}

.asw-formulario textarea {
  padding: 10px;
  height: 80px;
}

.asw-formulario .input-hint {
  display: block;
  font-size: 12px;
  color: #797979;
  margin-top: 4px;
  font-weight: 400;
}

.asw-formulario input:not([type="checkbox"]),
.asw-formulario select {
  height: 40px;
}

/* Estilo para los select con flecha */
.asw-formulario select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234d4d4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px;
}

.form-group-asw {
  margin-bottom: 1rem;
  padding: 0 8px !important;
  float: unset !important;
}

.col-sm-12 {
  width: 100% !important;
}

.col-sm-6 {
  width: 50% !important;
}

/*BOTONES*/
.asw-formulario .buttons-container,
.asw-formulario-wrapper .buttons-container,
.asw-cards-container .buttons-container,
.elt-conference-container .buttons-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.asw-btn {
  border-radius: 25px;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  min-width: 150px;
  border: none;
  cursor: pointer;
}

.elt-btn {
  border-radius: 25px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  min-width: 150px;
  border: none;
  cursor: pointer;
}

.asw-btn:hover,
.elt-btn:hover {
  box-shadow: none !important;
}

.asw-btn:focus,
.elt-btn:focus {
  outline: none;
}

.asw-btn:disabled,
.asw-btn[disabled],
.elt-btn:disabled,
.elt-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
}

.asw-btn.rounded-sm {
  border-radius: 4px;
}

.asw-btn.secondary {
  background-color: grey;
  color: #fff;
}

.asw-btn.secondary:hover {
  background-color: #4d4d4d;
}

.asw-btn.primary,
.elt-btn.primary {
  background-color: #ee0025;
  color: #fff;
}

.asw-btn.primary:hover,
.elt-btn.primary:hover {
  background-color: #c70000;
}

.elt-btn.secondary {
  background-color: #5532af;
  color: #fff;
}

.elt-btn.secondary:hover {
  background-color: #301864;
}

.elt-btn.confirmed {
  background-color: #28a745 !important;
  cursor: not-allowed;
}

.elt-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.asw-btn.dark,
.elt-btn.dark {
  background-color: #003d80;
  color: #fff;
}

.asw-btn.dark:hover,
.elt-btn.dark:hover {
  background-color: #001f4d;
}

.asw-btn.fonedu {
  background-color: #8a05be;
  color: #fff;
}

.asw-btn.fonedu:hover {
  background-color: #59017d;
}

/*ALERTAS*/
.asw-formulario div[role="alert"] {
  width: 100%;
}
.alert {
  position: relative;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.asw-formulario-wrapper .nota {
  font-size: 14px;
  font-weight: 500;
  margin-top: 1rem;
  padding: 10px;
  border-radius: 8px;
}

.asw-formulario-wrapper .nota.time {
  border: 1px solid #004580;
  background-color: #eff6ff;
  color: #004580;
}

.asw-formulario-wrapper .nota.aditional {
  border: 1px solid #973c00;
  background-color: #fffbeb;
  color: #973c00;
}

.asw-formulario-wrapper .unavailable-message {
  flex-wrap: wrap;
  display: none;
}

.unavailable-message h3,
.unavailable-message p {
  text-align: center;
  width: 100%;
}

/* MODAL */
.asw-formulario-modal {
  border: none;
  border-radius: 10px;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}

.asw-formulario-modal.lg {
  max-width: 1200px;
}

.asw-formulario-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.asw-formulario-modal .asw-modal-body {
  margin-top: 2rem;
  display: flex;
}

.asw-formulario-modal .asw-modal-image {
  max-width: 500px;
  max-height: 500px;
}

.asw-formulario-modal .asw-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  border-radius: 8px;
}

.asw-formulario-modal .asw-modal-content-wrapper {
  flex: 1;
  padding: 20px;
  max-height: 500px;
  overflow-y: auto;
}

.asw-formulario-modal .asw-modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #004580;
  margin: 0 0 1rem 0;
  text-align: center;
}

.asw-formulario-modal .asw-modal-content {
  font-size: 16px;
  color: #71717a;
  text-align: center;
  margin: 0 0 1rem 0;
}

.asw-formulario-modal .asw-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/*STEPPER*/
.masterclass-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 30px 0;
  gap: 10px;
}

.masterclass-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ddd;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.masterclass-step.active {
  background-color: #003d80;
  color: white;
}

.masterclass-step-line {
  width: 50px;
  height: 4px;
  background-color: #ddd;
  transition: background-color 0.3s ease;
}

.masterclass-step-line.active {
  background-color: #003d80;
}

/*Formulario Constancias*/
#formularioconstancia {
  display: none;
}

#wrapper-constancia {
  display: none;
}

#selecPrograma {
  display: block;
}

#selecPrograma,
#selecOpciones,
#selecSubOpciones {
  border-radius: 5px;
  border: none;
  box-shadow: 5px 5px 10px 1px #7a7a7a40;
  color: #4d4d4d;
  font-size: 16px;
  height: 40px;
  margin: 15px 0 0 0;
  padding: 10px 30px;
  width: 100%;
  outline: none;
}

#selecOpciones select {
  border: 1px solid #ccc0 !important;
  color: #4d4d4d;
}

.txtSolicitud {
  border-radius: 5px;
  border: 1px solid;
  margin: 25px auto 0 auto;
  padding: 20px 30px 30px 30px;
  width: 90%;
  display: none;
}

.description,
.listConditions,
.txtSolicitud p {
  color: #4d4d4d !important;
  font-size: 17px !important;
}

.txtSolicitud a {
  color: #004f9e !important;
  font-size: 17px !important;
}

.conditions,
.paraQue,
.paraQuien,
.costo,
.preview {
  color: #004580 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin: 30px 0 10px 0;
}

.listConditions li {
  margin-bottom: 10px;
}

#contentButton {
  text-align: center;
  margin-top: 1rem;
}

.select:before,
.select:after {
  display: none !important;
}

#selecOpciones,
#selecSubOpciones {
  display: none;
}

.check-info {
  display: flex;
  width: 100%;
  align-items: baseline;
}

.check-info .check-label {
  font-weight: 400;
  margin: 1rem 0 1rem 0.5rem;
}

.nota {
  display: flex;
  width: 100%;
  padding-top: 1rem;
  font-size: 12px;
}

#nota-revision {
  font-style: italic;
  color: #71717a;
  font-weight: 600;
}

#info_adicional {
  width: 100%;
  border-radius: 6px;
  height: 60px;
  margin-top: 1rem;
}

.preview-container {
  text-align: center;
}

.preview-container .preview-image {
  max-width: 350px;
}

.image-info-container {
  display: flex;
  gap: 15px;
}

/*Formulario modificaciones*/
#modificaciones-wrapper #inicio {
  width: 100%;
  display: block;
}

#modificaciones-wrapper #detalle_div {
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  padding: 16px;
}

#detalle_div h4 {
  font-size: 20px;
  font-weight: 700;
  color: #004580;
  margin: 0 0 1rem 0;
  text-align: center;
}

#detalle_div p {
  font-size: 16px;
  font-weight: 400;
  color: #71717a;
  margin: 0;
}

#modificaciones-wrapper .checkbox-titular-estudiante-container {
  width: 100%;
  padding: 0 8px;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.phase-form {
  display: flex;
  flex-wrap: wrap;
}

.phase-form .asw-formulario-title {
  width: 100%;
  margin-bottom: 2rem;
}

#phase-2 {
  display: none;
}

.buttons-phase {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.button-phase {
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  background-color: #007bfe;
  color: #fff;
}

.button-phase:hover {
  background-color: #0056b3;
  color: #fff;
}

#enviar_modificacion {
  display: none;
}

/* Animaciones */
.masterclass-fade-in {
  animation: masterclassFadeIn 0.5s ease-in-out forwards;
}

.masterclass-fade-out {
  animation: masterclassFadeOut 0.5s ease-in-out forwards;
}

@keyframes masterclassFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes masterclassFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/*Formulario Pagos*/
.authorization,
.multiple-checkbox {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
}

.multiple-checkbox {
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.authorization input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.authorization strong {
  color: #09090b;
}

.authorization label {
  font-size: 12px;
  line-height: 13px;
  color: #71717a;
  width: calc(100% - 16px);
}

/*Estilos Mobile*/
@media screen and (max-width: 767px) {
  .form-group-asw {
    width: 100% !important;
  }

  .image-info-container {
    flex-wrap: wrap;
  }

  .preview-container .preview-image {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 1023px) {
  #form-masterclass-container #info-payment {
    width: 95% !important;
    max-width: none;
  }

  #form-masterclass-container #resumen-payment {
    max-width: unset !important;
  }
}

/*Formulario Bootcamp*/
#bootcamp_asw {
  display: none;
}

.info-tutor {
  display: none;
}

/*Formulario Masterclass*/
#form-masterclass-container {
  display: none;
  gap: 15px 30px;
  flex-wrap: wrap;
}

#form-masterclass-container #back-to-courses {
  width: 100%;
  margin: 0;
  font-size: 25px;
  color: #6ec1e4;
  cursor: pointer;
}

#form-masterclass-container #info-payment {
  width: calc(100% - 380px);
}

#form-masterclass-container #resumen-payment {
  max-width: 350px;
}

.asw-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.asw-card-ecommerce {
  max-width: 350px;
  background-color: #f9f9ff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  height: fit-content;
}

.asw-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #4cd964;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 0 0px 0 8px;
  z-index: 1;
}

.asw-card-header {
  background-color: #0050c8;
  color: white;
  padding: 20px;
  text-align: center;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.asw-card-title {
  margin: 0;
  font-size: 48px;
  font-weight: 700 !important;
  color: #fff;
}

.asw-card-subtitle {
  margin: 10px 0 0;
  font-size: 18px;
}

.asw-card-body {
  padding: 20px;
  color: #333;
}

.asw-card-price {
  display: block;
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #555;
}

.asw-card-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.asw-card-benefits li {
  display: flex;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #cdcdcd;
  font-size: 14px;
}

.asw-check-icon {
  color: green;
  margin-right: 8px;
  font-weight: bold;
}

.asw-card-button:hover {
  background-color: #001f4d;
}

.asw-card-ideal {
  font-size: 12px;
  color: #333;
  margin: 15px 0 0 0;
  text-align: center;
}

#form-masterclass-container hr {
  margin: 20px 0;
  border: 1px solid #e4e4e7;
}

#resumen-compra {
  font-size: 20px;
  margin: 0;
}

#total-compra {
  font-size: 32px;
  display: flex;
  justify-content: space-between;
}

#modal-masterclass p.asw-modal-content {
  text-align: left;
}

/*Formulario Elt Conference*/
:root {
  --elt-bg: #f8fafc;
  --elt-card-bg: #fff;
  --elt-border: #e5e7eb;
  --elt-muted: #64748b;
  --elt-accent: #2563eb;
  --elt-badge-confirmed-bg: #dcfce7;
  --elt-badge-confirmed-text: #15803d;
}

.elt-conference-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 16px;
}

.elt-conference-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.elt-conference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1rem;
}

.elt-conference-card {
  background: var(--elt-card-bg);
  border: 1px solid var(--elt-border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.elt-conference-card--accent {
  border-left: 4px solid var(--elt-accent);
}

.elt-conference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.elt-conference-card-title {
  font-size: 1.1rem !important;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.elt-conference-card-sub {
  margin: 4px 0 16px;
  color: var(--elt-muted);
}

.elt-conference-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  margin-bottom: 6px;
}

.elt-conference-icon {
  font-size: 1rem;
  opacity: 0.7;
}

.elt-conference-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
}

.elt-conference-badge--confirmed {
  background: var(--elt-badge-confirmed-bg);
  color: var(--elt-badge-confirmed-text);
}

.elt-conference-card--empty {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--elt-muted);
}

.rating-section {
  margin-bottom: 20px;
  text-align: center;
}

.rating-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1a365d;
}

.stars-container {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 10px;
}

.star-item {
  font-size: 2em;
  cursor: pointer;
  color: #ddd;
  transition: all 0.2s ease;
  user-select: none;
}

.star-item.filled {
  color: #ffc107;
  transform: scale(1.1);
}

.star-item.empty {
  color: #ddd;
}

.star-item:hover {
  transform: scale(1.2);
}

.rating-message {
  display: block;
  margin-top: 8px;
  font-size: 0.95em;
  color: #666;
  font-weight: 500;
  min-height: 20px;
}

.comments-section {
  margin-top: 20px;
}

.comments-section label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1a365d;
}

.comments-section textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  resize: vertical;
}

.comments-section textarea:focus {
  outline: none;
  border-color: #1a365d;
}

/* Conferencias ELT */
.cities-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.city-button {
  font-weight: 700;
  color: #fff !important;
  background-color: transparent;
  background-image: linear-gradient(90deg, #0033ff 0%, #4054b2 100%);
  border-style: none;
  border-radius: 50px;
  line-height: 22px;
  padding: 6px 15px;
  min-width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.2s ease;
}

.city-button:hover,
.city-button:focus,
.city-button.active {
  text-decoration: none;
  background-color: transparent;
  background-image: linear-gradient(240deg, #3334f1 0%, #f2295b 100%);
}

.event-details {
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.event-details[open] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-details summary {
  cursor: pointer;
  padding: 8px 16px;
  outline: none;
}

.event-details summary strong {
  color: #1a365d;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.event-details:hover summary strong {
  color: #2c4a7c;
}

.event-content {
  padding: 12px 26px 8px 26px;
  opacity: 0;
  display: none;
}

.speaker-name {
  color: #666;
  font-size: 0.9em;
  display: block;
}

.time-slot {
  margin: 20px 0;
  padding: 15px;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.time-slot-title {
  color: #1a365d !important;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
  font-weight: 600;
  font-size: 25px !important;
}

.time-slot-events {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-flex-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.speakers-pictures {
  flex-shrink: 0;
  display: flex;
  gap: 20px;
}

.event-text-content {
  flex-grow: 1;
}

.speaker-info {
  text-align: center;
  width: 120px;
}

.speaker-picture {
  width: 120px;
  height: 120px !important;
  border-radius: 50% !important;
  object-fit: contain;
  border: 3px solid #1a365d !important;
}

.speaker-caption {
  font-size: 0.9em;
  color: #1a365d;
  font-weight: 500;
  margin-top: 8px;
  display: block;
}

.event-abstract {
  margin: 0;
  line-height: 1.6;
}

.available-seats {
  margin-top: 15px;
  color: #1a365d;
}

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

  .speakers-pictures {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .category-colors {
    flex-direction: column;
    gap: 10px;
  }

  .type-item {
    font-size: 0.9em;
  }
}

.event-types-guide,
.category-guide {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-types-guide h4,
.category-guide h4 {
  color: #1a365d !important;
  margin: 0 0 15px 0;
  font-size: 1.2em !important;
}

.types-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.type-item {
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 0.95em;
  line-height: 1.4;
}

.category-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
}

.color-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.category-name {
  font-size: 0.95em;
  color: #4a5568;
}

/*Ponencias ELT*/
.elt-presentations-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.presentation-details {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.presentation-details[open] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.presentation-summary {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  list-style: none;
}

.presentation-summary::-webkit-details-marker {
  display: none;
}

.presentation-info {
  flex: 1;
}

.presentation-title {
  margin: 0 0 5px 0;
  color: #1a365d !important;
  font-size: 1.1em !important;
}

.presentation-time {
  color: #666;
  font-size: 0.9em;
}

.presentation-arrow {
  transition: transform 0.3s ease;
  color: #1a365d;
}

.presentation-details[open] .presentation-arrow {
  transform: rotate(180deg);
}

.presentation-content {
  padding: 20px;
}

.presentation-meta {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.presentation-meta p {
  margin: 5px 0;
}

.inscriptions-title {
  color: #1a365d;
  margin-bottom: 15px;
}

.table-responsive {
  overflow-x: auto;
}

.inscriptions-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.inscriptions-table thead {
  background: #1a365d;
  color: white;
}

.inscriptions-table th,
.inscriptions-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}

.inscriptions-table tbody tr:hover {
  background: #f8f9fa;
}

.attendance-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 500;
}

.attendance-status {
  min-width: 120px;
}

.status-attended {
  background: #d4edda;
  color: #155724;
}

.status-absent {
  background: #f8d7da;
  color: #721c24;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.action-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.2em;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
  width: 45%;
}

.btn-confirm {
  background-color: #28a745 !important;
  color: #fff !important;
}

.btn-confirm:hover {
  background: #218a3a !important;
}

.btn-absent {
  background-color: #dc3545 !important;
  color: #fff !important;
}

.btn-absent:hover {
  background: #b12b38 !important;
}

.confirmed-text {
  color: #666;
  font-size: 0.85em;
}

.no-inscriptions {
  text-align: center;
  color: #666;
  padding: 20px;
}

@media (max-width: 768px) {
  .inscriptions-table {
    font-size: 0.9em;
  }

  .inscriptions-table th,
  .inscriptions-table td {
    padding: 8px;
  }

  .actions-cell {
    min-width: 90px;
  }

  .action-btn {
    width: 100%;
    margin-bottom: 8px;
  }

  .videos-section,
  .restaurants-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .city-info-section {
    padding: 15px !important;
  }

  .city-info-section h2 {
    font-size: 1.2em;
  }
}

.city-info-section {
  margin: 30px 0;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.city-info-section h2 {
  color: #1a365d;
  margin-bottom: 20px;
  font-size: 1.5em;
}

/* Videos Section */
.videos-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.video-column h2 {
  text-align: center;
  margin-bottom: 15px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Schedule Section */
.schedule-section {
  text-align: center;
}

.schedule-image {
  margin-top: 20px;
}

.schedule-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Restaurants Section */
.restaurants-section .centered-title {
  text-align: center;
  margin-bottom: 30px;
}

.restaurants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.restaurant-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.restaurant-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.restaurant-item:hover img {
  transform: scale(1.05);
}
