.button-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF; /* Bootstrap blue */
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.button-primary:hover {
    background-color: #0056b3;
}