﻿.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    max-width: 220px; /* Prevents button from stretching too wide */
    text-align: center;
    white-space: nowrap; /* Keeps button text on one line */
}

    .btn:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
    }

    .btn:active {
        transform: translateY(1px);
    }
