/* Base Button Styles as Links */
.link-button {
    background-color: #d9534f; /* Red color matching the site's style */
    color: white !important;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #c9302c; /* Darker red on hover */
}

/* Different Button Sizes */
.link-button-small {
    padding: 5px 10px;
    font-size: 14px;
}

.link-button-large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Full Width Button */
.link-button-block {
    display: block;
    width: 100%;
}
