﻿.fade-button {
    background: linear-gradient(90deg, #ff4500 0%, #ff7f50 100%);
    color: white;
    border: 2px solid orangered;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 225px;
    display: inline-block; /* Ensures width is respected for buttons or links */
    text-align: center;
}

    .fade-button:hover {
        background: linear-gradient(90deg, orangered 0%, #ff4500 100%);
        color: white;
    }
