/* Button Styles - Dark-Style mit Magic UI Shimmer-Effekten */

.widget-button-standard {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    border: 1px solid var(--color-primary);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.widget-button-standard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.widget-button-standard:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    box-shadow: 0 4px 16px rgba(0, 160, 220, 0.4);
    transform: translateY(-1px);
}

.widget-button-standard:hover::before {
    left: 100%;
}

.widget-button-standard:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.3);
}

.widget-button-delete {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 10px 20px;
    background-color: var(--color-error);
    color: var(--color-text-inverse);
    border: 1px solid var(--color-error);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.widget-button-delete::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.widget-button-delete:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    transform: translateY(-1px);
}

.widget-button-delete:hover::before {
    left: 100%;
}

.widget-button-delete:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.widget-button-google {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 10px 20px;
    background-color: var(--color-background-surface);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.widget-button-google::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.widget-button-google:hover {
    background-color: var(--color-nav-hover-bg);
    border-color: var(--color-border-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.widget-button-google:hover::before {
    left: 100%;
}

.widget-button-google:active {
    background-color: var(--color-nav-active-bg);
    transform: translateY(0);
}
