/* RSVP Form Styles */
.rsvp-form {
    box-sizing: border-box;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    box-sizing: border-box;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

.rsvp-form .rsvp-submit {
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    text-decoration: none;
    outline: none;
}

/* RSVP Counts Styles */
.rsvp-counts-widget {
    box-sizing: border-box;
}

.rsvp-counts-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rsvp-counts-block {
    display: flex;
    flex-direction: column;
}

.rsvp-counts-grid {
    display: grid;
}

.rsvp-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.rsvp-count-number {
    box-sizing: border-box;
}

.rsvp-count-label {
    box-sizing: border-box;
}

/* RSVP Comments Styles */
.rsvp-comments-widget {
    box-sizing: border-box;
}

.rsvp-comments-list {
    box-sizing: border-box;
}

.rsvp-comments-list-item {
    display: flex;
    gap: 20px;
    box-sizing: border-box;
}

.rsvp-comments-list-item-section:first-child {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.rsvp-comments-list-item-section:last-child {
    flex: 1;
}

.rsvp-comments-list-item-icon {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.rsvp-comments-list-item-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    overflow: hidden;
}

.rsvp-comments-list-item-icon i {
    display: block;
}

.item-title,
.item-message,
.item-date {
    box-sizing: border-box;
}

.no-rsvp-message {
    box-sizing: border-box;
}

.rsvp-pagination {
    box-sizing: border-box;
}

.pagination-link {
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rsvp-comments-list-item {
        gap: 15px;
    }
    
    .rsvp-comments-list-item-section:first-child {
        width: 35px;
    }
    
    .rsvp-comments-list-item-icon img {
        width: 35px;
        height: 35px;
    }
    
    .rsvp-counts-inline {
        justify-content: center;
    }
}
