/* ============================================================
   BUNGA ADAT ART 01 (TERRACOTTA RUSTIC) - RSVP & WISHES STYLES
   ============================================================ */

:root {
    --rsvp-primary: #943414;
    --rsvp-primary-dark: #652009;
    --rsvp-primary-light: #fbeee9;
    --rsvp-text-dark: #25201f;
    --rsvp-text-muted: #575760;
    --rsvp-border: rgba(148, 52, 20, 0.3);
    --rsvp-card-bg: rgba(255, 255, 255, 0.95);
    --rsvp-shadow: 0 8px 24px rgba(100, 40, 20, 0.1);
    --rsvp-radius: 18px;
}

.rsvp-card-wrapper {
    max-width: 440px;
    margin: 20px auto 30px auto;
    background: var(--rsvp-card-bg);
    border-radius: var(--rsvp-radius);
    padding: 26px 20px;
    border: 2px solid var(--rsvp-border);
    box-shadow: var(--rsvp-shadow);
    text-align: left;
}

.total-ucapan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rsvp-primary-light);
    color: var(--rsvp-primary-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid var(--rsvp-border);
}

.form-group-rsvp {
    margin-bottom: 16px;
}

.form-label-rsvp {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rsvp-text-dark);
    margin-bottom: 6px;
}

.form-control-rsvp {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--rsvp-border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--rsvp-text-dark);
    background: #ffffff;
    transition: all 0.25s ease;
    outline: none;
}

.form-control-rsvp:focus {
    border-color: var(--rsvp-primary);
    box-shadow: 0 0 0 3px rgba(148, 52, 20, 0.15);
}

textarea.form-control-rsvp {
    resize: vertical;
    min-height: 90px;
}

.attendance-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.attendance-radio-label {
    position: relative;
    display: block;
    cursor: pointer;
}

.attendance-radio-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.attendance-radio-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    background: #ffffff;
    border: 1.5px solid var(--rsvp-border);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--rsvp-text-dark);
    transition: all 0.25s ease;
    text-align: center;
}

.attendance-radio-label input:checked + .attendance-radio-box {
    background: var(--rsvp-primary-light);
    border-color: var(--rsvp-primary);
    color: var(--rsvp-primary-dark);
    font-weight: 700;
}

.btn-submit-rsvp {
    width: 100%;
    background: var(--rsvp-primary);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(148, 52, 20, 0.3);
    margin-top: 10px;
}

.btn-submit-rsvp:hover {
    background: var(--rsvp-primary-dark);
    transform: translateY(-2px);
}

/* WISHES STREAM */
.wishes-stream-container {
    max-width: 440px;
    margin: 0 auto;
    text-align: left;
}

.wishes-scroll-box {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 4px;
}

.wishes-scroll-box::-webkit-scrollbar {
    width: 5px;
}
.wishes-scroll-box::-webkit-scrollbar-thumb {
    background: var(--rsvp-primary-light);
    border-radius: 5px;
}

.wish-item-card {
    background: #ffffff;
    border: 1px solid var(--rsvp-border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wish-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.wish-item-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wish-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rsvp-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.wish-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--rsvp-text-dark);
}

.wish-time {
    font-size: 11px;
    color: #888888;
}

.wish-status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.wish-status-hadir {
    background: #e8f5e9;
    color: #2e7d32;
}

.wish-status-tidak-hadir {
    background: #ffebee;
    color: #c62828;
}

.wish-status-ragu {
    background: #fff8e1;
    color: #f57f17;
}

.wish-message {
    font-size: 13.5px;
    color: #444444;
    line-height: 1.5;
    word-break: break-word;
}