#wish-rsvp {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem 1rem 2rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--secondary-text-color);
}

#wish-rsvp h1 {
    font-family: var(--font-kaligrafi);
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

#wish-rsvp p {
    font-family: var(--font-biasa);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.content-wish-rsvp {
    width: 100%;
    background: var(--background);
    padding: 1rem;
    color: var(--text-color);
    border-radius: 1rem;
}

#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(--text-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    
    width: 100%;
    font-family: var(--font-biasa);
    color: var(--text-color);
}

#wishForm option {
    background-color: var(--background);
    color: var(--text-color);
}

.radio-group {
    width: 100%;
    display: flex;
    gap: 1rem;
}

#wishForm textarea {
    height: 6rem;
}

#wishForm button {
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-family: var(--font-biasa);
    color: var(--text-color);
    background-color: var(--accent-color);
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#wishForm button:hover {
    color: var(--text-color);
    background-color: var(--secondary-color);
    cursor: pointer;
}

.content-comment {
    width: 100%;
}

.content-messages {
    margin: 1rem 0;
    color: var(--text-color);
    border-radius: 0.5rem;
    border: 1px solid var(--text-color);
}

#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: var(--font-biasa);
    text-shadow: none !important;
    text-align: left !important;
}

#pagination {
    text-align: center;
}

#pagination button {
    border: none;
    border-radius: 0.5rem;
    font-family: var(--font-biasa);
    color: var(--text-color);
    background-color: var(--accent-color);
    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(--text-color);
    background-color: var(--secondary-color);
    cursor: pointer;
}
