/* components/buttons.css */
.uk-button-primary {
    min-width: 80px;
    height: 36px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: white;
    text-decoration: none;
}

.uk-button-primary:hover {
    background: var(--bs-primary-dark);
    color: white;
    text-decoration: none;
}

.uk-icon-button {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.uk-icon-button:hover {
    background: #e5e5e5;
}