
a:hover {
	text-decoration:none;
}

/* site.css strips underlines from all <a> and sets font-weight: 500, which makes inline links indistinguishable from bold body text — especially with Grey 4 link color sitting close to brand-black body. Restore underlines on naked inline links; exclude anchors used as Bootstrap components. */
a {
    text-decoration: underline;
}
nav a,
footer a,
.btn,
.nav-link,
.navbar-brand,
.dropdown-item,
.page-link,
.list-group-item-action {
    text-decoration: none;
}

/* round out the buttons and form elements*/
.btn, input.form-control, textarea.form-control, select.form-control {
	border-radius: 24px;
}

/* remove roundness on form elements */
input.form-control-square, textarea.form-control-square, select.form-control-square {
	border-radius: .2rem;
}

.alert {
    border-radius: 25px;
}

.navbar-nav .nav-link:hover {
    color: #36315A;
}

.dropdown-item.active, .dropdown-item:active {
    color: #36315A;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #36315A;
}

/* outline-success: green-on-white text is illegible; force brand black for resting/disabled. Hover/active states already pick brand black via YIQ. (outline-primary is fine in v3 — Grey 3 text on white reads at ~6.5:1.) */
.btn-outline-success,
.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #07011C;
}

/* text-secondary uses Grey 2 (#C8C6D2) per palette, which is ~1.4:1 on white — fine for btn/bg-secondary surfaces but illegible as text. Bump muted text to Grey 3. */
.text-secondary {
    color: #635C7D !important;
}

/* nav-link + btn-primary: site.css forces .nav-link to #343a40, which is dark-on-dark over v3's brand-black primary. Restore the button's white text. */
.nav-link.btn-primary,
.nav-link.btn-primary:hover,
.nav-link.btn-primary:focus {
    color: #fff;
}

/* btn-primary hover/active: Bootstrap darkens the bg ~7.5% on hover, but #07011C is already so dark the change is imperceptible. Lighten slightly instead for a visible hover affordance. */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: #2A2444;
    border-color: #2A2444;
}

/* success solid buttons: Bootstrap darkens the green bg ~7.5% on hover/active, which drops below the YIQ threshold and flips text to white. Hold text at brand black across all interactive states. (Primary is Grey 3 in v3 and stays white-text in all states — no override needed.) */
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    color: #07011C;
}

.icon-payout {
    filter: grayscale(100%);
}
