.form-wishes-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}
.wish-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.wish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.wish-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.wish-attendance {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
    background-color: #eee;
}
.wish-attendance.status-hadir {
    background-color: #d4edda;
    color: #155724;
}
.wish-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}