﻿/* ======== Egységes Téma Gombok ======== */
.theme-btn {
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.theme-btn-sm {
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
}

.theme-btn-primary {
    background-color: #0051a2;
}

    .theme-btn-primary:hover {
        background-color: #003f80;
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }

.theme-btn-success {
    background-color: #2a9d8f;
}

    .theme-btn-success:hover {
        background-color: #21867a;
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }

.theme-btn-danger {
    background-color: #c1121f;
}

    .theme-btn-danger:hover {
        background-color: #a10e1a;
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }

.theme-btn-warning {
    background-color: #e76f51;
    color: #fff;
}

    .theme-btn-warning:hover {
        background-color: #d45b3f;
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }
