#wish-rsvp {
    position: relative;
    background-color: rgba(208, 195, 186, 0.7);
    margin: 2rem;
    padding: 5rem 1rem;
    border-radius: 10rem 10rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--blue);
}

#wish-rsvp h1 {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    line-height: 2.5rem;
    word-spacing: 0.5rem;
    margin-bottom: 1rem;
}

#wish-rsvp p {
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.content-wish-rsvp {
    width: 100%;
}

#wishForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

#wishForm .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#wishForm .form-group label {
    align-self: flex-start;
}

#wishForm input,
#wishForm textarea,
#wishForm select {
    padding: 0.5rem;
    background: transparent;
    border: 1px solid var(--blue);
    border-radius: 0.5rem;
    font-size: 1.1rem;
    
    width: 100%;
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--blue);
}

.radio-group {
    width: 100%;
    display: flex;
    gap: 1rem;
}

#wishForm textarea {
    height: 6rem;
}

#wishForm button {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
    background-color: var(--blue);
    color: var(--gold);
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#wishForm button:hover {
    background-color: var(--gold);
    color: var(--blue);
    cursor: pointer;
}

.content-comment {
    width: 100%;
}

.content-messages {
    margin-bottom: 1rem;
    background-color: var(--pastel);
    border-radius: 0.5rem;
}

#messages {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comment {
    width: 100%;
    padding: 1rem;
}

.comment p,
.comment strong,
.comment span {
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--blue) !important;
    text-shadow: none !important;
    text-align: left !important;
}

#pagination {
    text-align: center;
}

#pagination button {
    border: none;
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--gold);
    background-color: var(--blue);
    font-size: 1.1rem;
    padding: 0.5rem;
    margin: 0 0.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#pagination button:hover {
    color: var(--blue);
    background-color: var(--gold);
    cursor: pointer;
}
