body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8fafc; /* bg-slate-50 */
}

#rsvp-container {
    min-height: 100vh;
    padding: 2rem; /* p-8 */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* items-start */
    justify-content: center; /* justify-center */
}

.content-wrapper {
    max-width: 42rem; /* max-w-2xl */
    width: 100%;
    text-align: left; /* text-left */
}

h1 {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700; /* font-bold */
    margin-bottom: 1rem; /* mb-4 */
    color: #1e293b;
}

p {
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 2rem; /* mb-8 */
    color: #1e293b;
    line-height: 1.75;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem; /* gap-4 */
}

.button {
    background-color: #2563eb; /* bg-blue-600 */
    color: #ffffff; /* text-white */
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    border-radius: 0.375rem; /* rounded-md */
    font-weight: 600; /* font-semibold */
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #1d4ed8; /* hover:bg-blue-700 */
}
