.stay-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #f9f9f9;
}
.stay-card h3 {
  margin-top: 0;
  color: #333;
}
.actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}
.actions button {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* Conteneur principal */
#stays-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

/* Carte de séjour */
.stay-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.75rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* En-tête du séjour */
.stay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #555;
}

/* Dates du séjour */
.stay-dates {
  color: #333;
  font-size: 0.9rem;
}

/* Nom du locataire */
.stay-name {
  color: #333;
  font-size: 1rem;
}

/* Plateforme */
.stay-platform {
  color: #666;
  font-size: 0.85rem;
}

.stay-note > p {
  color: #333;
  font-size: 0.85rem;
}

/* Section des notifications */
.stay-notification {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #ddd;
}

/* Titre de la notification */
.notification-title {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Boutons de notification */
.notification-buttons {
  display: flex;
  gap: 0.5rem;
}

.notification-buttons button {
  padding: 0.4rem 0.8rem;
  background-color: #f0e6f0;
  color: #333;
  border: 1px solid #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
}

.notification-buttons button:hover {
  background-color: #666;
  color: #fff;
}
