/* General Plugin Styles */
.rsvpify-embedder {
    font-family: Arial, sans-serif;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.rsvpify-logo {
    display: block;
    margin: 0 auto 15px;
    max-width: 180px;
}
.instructions {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #555;
}
.create-event-link {
    font-size: 13px;
    margin-bottom: 20px;
}
.create-event-link a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}
.create-event-link a:hover {
    text-decoration: underline;
}
.rsvpify-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.input-field {
    font-size: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}
.button-primary {
    font-size: 15px;
    padding: 10px 20px;
    background-color: #45286a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.button-primary:hover {
    background-color: #3a2059;
}
.shortcode-history {
    list-style: none;
    padding: 0;
}
.shortcode-history li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.shortcode-entry {
    background: #f0f0f0;
    padding: 6px 10px;
    border-radius: 4px;
    font-family: monospace;
    margin-right: 10px;
}
.copy-btn {
    font-size: 14px;
    padding: 6px 10px;
    background: #191236;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}
.copy-btn:hover {
    background: #0f0c2e;
}
.copy-confirm {
    font-size: 13px
