:root {
  --magenta: #fa02a3;
  --verde-check: #1ffe23;
  --card-border: 2px solid #000;
}

/* --- SEPARADOR DE MES (PÍLDORA) --- */
.section-month {
  background-color: var(--magenta);
  color: white !important;
  text-align: center;
  padding: 10px 20px;
  border-radius: 50px; /* Forma de píldora */
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  width: auto; /* Se ajusta al contenido o puedes usar 100% */
  box-shadow: 0 4px 10px rgba(250, 2, 163, 0.3);
}
.eventos-container {
  padding: 20px 20px 40px;
}
/* --- TARJETA --- */
.evento-card-new {
  background: white;
  border: var(--card-border);
  border-radius: 40px;
  display: flex;
  padding: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  min-height: 200px;
  align-items: center; /* Centra verticalmente contenido */
}

.evento-img-container {
  flex: 0 0 35%;
  height: 160px;
}

.evento-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.evento-details {
  flex: 1;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* --- BOTONES DE ACCIÓN (CIRCULARES) --- */
.evento-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 5px;
}

/* Quitamos estilos de Odoo con reset */
.btn-action {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  font-size: 22px !important;
  color: #000 !important;
  text-decoration: none !important;
  cursor: pointer;
}

.btn-cancel {
  background-color: var(--magenta) !important;
}

.btn-check-4 {
  background-color: var(--verde-check) !important;
}

.btn-check-4 i {
  color: #000 !important;
}

/**/
.cal-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
