.rsvpify-wrap {
    padding: 20px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}
.rsvpify-logo {
    display: block;
    margin: 0 auto 12px;
    max-width: 180px;
}
.rsvpify-instructions {
    font-size: 13px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.4;
}
#rsvpify_url {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.generate-button {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    background: #45286a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s ease;
}
.generate-button:hover {
    background: #3a2059;
}
.rsvpify-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.rsvpify-item code {
    flex: 1;
    background: #f5f5f5;
    padding: 6px 8px;
    border-radius: 3px;
    font-family: monospace;
    margin-right: 8px;
}
.copy-button, .delete-button {
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    margin-right: 6px;
}
.copy-button {
    background: #191236;
    color: #fff;
}
.copy-button:hover {
    background: #0f0c2e;
}
.delete-button {
    background: transparent;
    color: #333;
}
.delete-button .dashicons-trash {
    font-size: 16px;
}