:root {
    --cassiopeia-alternate: #a1c31a; /* Change this to your desired color */
}
:root {
  --cassiopeia-color-primary: #a1c31a;
  --cassiopeia-color-link: #a1c31a;
  --link-color: #a1c31a;
  --link-color-rgb: 161,195,26;
  --cassiopeia-color-hover: #71a50f;
  --link-hover-color: #71a50f;
  --link-hover-color-rgb: 113,165,15;
}
a {
    text-decoration: none !important;
}

a[data-spotlight] {
    position: relative;
    display: inline-block;
    text-decoration: none; /* Removes default link underline */
    color: white; /* Ensures text is readable */
}

a[data-spotlight] img {
    display: block;
    width: 100%;
}

a[data-spotlight] .overlay {
    position: absolute;
    bottom: 0; /* Positions text at the bottom */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay background */
    color: white;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(20px); /* Initial position (hidden below) */
}

a[data-spotlight]:hover .overlay {
    opacity: 1;
    transform: translateY(0); /* Moves up into view */
}

/* Add box-shadow on hover for blog items in Cassiopeia boxed layout */
.blog-item {
    transition: box-shadow 0.3s ease-in-out;
}

.blog-item:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px); /* Optional: Adds a slight lift effect */
}


.button, .readon, .btn, button.validate, #member-profile a, #member-registration a, .formelm-buttons button {
    border-color: #71a50f;
    background: #98c11a;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration-line: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #5d5f5c;
    text-shadow: none;
    isplay: inline-block;
    padding: 10px 10px;
    line-height: 1.7em;
    font-size: 1em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid;
    }