﻿/* Alt Notice Box — Green Background, Dark Border, White Text */
.box.alt-notice {
    background-color: #3d4449;
    border: solid 3px #6cc5af;
    border-radius: 0.375em;
    color: #ffffff;
    padding: 2em 2.5em;
    margin-bottom: 3em;
    position: relative;
}

    .box.alt-notice strong {
        color: #6cc5af;
        font-weight: 700;
    }

    .box.alt-notice p {
        color: rgba(255, 255, 255, 0.9);
        margin: 0 0 1em 0;
        line-height: 1.75;
    }

        .box.alt-notice p:last-child {
            margin-bottom: 0;
        }

    .box.alt-notice a {
        color: #6cc5af;
        border-bottom-color: rgba(108, 197, 175, 0.5);
    }

        .box.alt-notice a:hover {
            color: #77c9b5;
            border-bottom-color: #77c9b5;
        }

    /* Optional: Accent bar on left edge */
    .box.alt-notice::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        background-color: #6cc5af;
        border-radius: 0.375em 0 0 0.375em;
    }
