/* Button-Styles - Einfach und ohne Effekte */
.widget-button-standard {
    background: #f39324;
    color: #ffffff !important;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.widget-button-standard:hover {
    background: #e88a1f;
    color: #ffffff !important;
}

.widget-button-delete {
    background-color: var(--color-danger);
    color: var(--color-text);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.widget-button-delete:hover {
    background-color: #c82333;
}

/* Button-Gruppen */
.widget-button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.widget-button-group .widget-button-standard,
.widget-button-group .widget-button-delete {
    margin: 0;
}

/* Back-Button */
.back-button {
    display: inline-block;
    padding: 12px 32px;
    background: #f39324;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.back-button:hover {
    background: #e88a1f;
}

/* Pricing-Button */
.pricing-button {
    width: 100%;
    padding: 14px 32px;
    background: #f39324;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.pricing-button:hover {
    background: #e88a1f;
}

.pricing-card.featured .pricing-button {
    background: #1c7a7e;
}

.pricing-card.featured .pricing-button:hover {
    background: #155b5e;
}

/* Button-Wrapper */
.bewertungen-back-button,
.seoday-kundenstimmen-all-button,
.seoday-blog-all-posts-button {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .widget-button-standard,
    .widget-button-delete,
    .pricing-button,
    .back-button {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .widget-button-group {
        flex-direction: column;
    }
}