#loveForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

#loveForm label {
    font-weight: bold;
    margin-bottom: 5px;
}

#loveForm input[type="text"] {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 250px;
    text-align: center;
}

#loveForm button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff6699;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#loveForm button:hover {
    background-color: #ff3366;
}

/* Conteneur de l'image romantique et du trait */
#welcomeSection {
    text-align: center;
    margin-bottom: 20px;
}

/* Image romantique */
#welcomeSection img {
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}


/* Trait gris sous l’image */
#welcomeSection .separator {
    margin-top: 15px;
    height: 2px;
    background-color: #ccc;
    border: none;
    border-radius: 5px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#loveResult {
    margin-top: 25px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid #ddd;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #222;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

#avatar1 {
  position: absolute;
  width: 64px;
  bottom: 52px;
  left: 56px;
  display: none;
  z-index: 10;
}

#avatar2 {
  position: absolute;
  width: 64px;
  bottom: 52px;
  right: 56px;
  display: none;
  z-index: 10;
}

#todayResults {
    max-width: 480px;
    margin: 30px auto 0;
    padding: 15px 20px;
    background: #fff;
    border-left: 4px solid #e07a9a; /* rose doux */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-radius: 6px;
}

#todayResults strong {
    display: block;
    font-size: 1.1em;
    margin-bottom: 12px;
    color: #b35c73; /* rose discret */
    letter-spacing: 0.04em;
    text-align: center;
    font-weight: 600;
}

#todayResults .couple-entry {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
    font-size: 0.95em;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: #555;
}

#todayResults .couple-entry:last-child {
    border-bottom: none;
}

#todayResults .couple-entry:hover {
    background-color: #f9ebf0; /* léger rose pâle au hover */
    cursor: default;
    transition: background-color 0.25s ease;
}

#welcomeLove {
    margin-bottom: 10px;
    /* color: #b35c73;  <-- supprimé ici */
}

#welcomeLove > div:first-child {
    color: #b35c73; /* couleur rose discret uniquement sur le premier div enfant */
}

