/* Fix link visibility inside Django admin success alert messages.
   accent-green makes links the same color as the success background,
   making them invisible. Force a dark, readable color instead. */
.alert-success a,
.alert-success a:link,
.alert-success a:visited,
.alert-success a:hover {
    color: #0a3d14 !important;
    font-weight: 600;
    text-decoration: underline !important;
}

/* Also fix info and warning alert links for consistency */
.alert-info a,
.alert-info a:link,
.alert-info a:visited {
    color: #0c3547 !important;
    font-weight: 600;
    text-decoration: underline !important;
}

.alert-warning a,
.alert-warning a:link,
.alert-warning a:visited {
    color: #533f03 !important;
    font-weight: 600;
    text-decoration: underline !important;
}
