/* Primær knapp */
.btn-primary {
    background: #1A73E8;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
    background: #1664c4;
    transform: translateY(-2px);
}

/* Sekundær knapp */
.btn-secondary {
    background: #FFB703;
    color: black;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
    background: #e6a302;
    transform: translateY(-2px);
}
