/**
 * @file
 * Use this CSS file to override base CSS rules
 */


/* Style for Dates & Deadline Tags on Homepage */

.ddtag { 
    width: auto;
    max-width: 200px;
    padding: 5px 15px;
    background-color: rgb(255,104,36,.8); 
    color: white;
    font-size: .8em;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Lato', Helvetica Neue, Arial, Sans-serif;

}

/* Style for Member Benefits page links */

.member-benefit-link {
    color: #0088cc; /* Original color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition */
}

.member-benefit-link:hover {
    color: #ff6824; /* Color on hover */
    text-decoration: underline; /* Underline on hover */
}

/* Member Benefits page text */

.mb-text {
	color: #575757; /* Original color */
}

/* ABootstrap alert text color override */

.alert {
	color: #575757;
}

a {
    color: #0088cc; /* Original color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition */
}

a:hover {
    color: #ff6824; /* Color on hover */
    text-decoration: underline; /* Underline on hover */
}