/* ── Colour utilities ── */
.cgreen {
    color: rgba(43, 221, 138, 0.97) !important;
    text-shadow: 0 0 8px rgba(43, 221, 138, 0.35);
}

.text-muted-term {
    color: rgba(255, 255, 255, 0.35) !important;
}

/* ── Font utilities ── */
.font-mono {
    font-family: "Lettera Mono LL Cond Light";
    font-weight: 400;
}

/* ── Terminal button ── */
.btn-term {
    background: transparent;
    border: 1px solid rgba(43, 221, 138, 0.3);
    color: rgba(43, 221, 138, 0.7);
    padding: 7px 20px;
    font-family: "Lettera Mono LL Cond Light";
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

    .btn-term:hover {
        border-color: rgba(43, 221, 138, 0.65);
        color: #2bdd8a;
        box-shadow: 0 0 14px rgba(43, 221, 138, 0.18);
        background: rgba(43, 221, 138, 0.04);
    }

/* ── Input / textarea focus ring ── */
textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgba(43, 221, 138, 0.4) !important;
}

/* ── Modal polish for dark theme ── */
.modal-content {
    background: rgba(0, 4, 0, 0.97);
    border: 1px solid rgba(43, 221, 138, 0.2);
    box-shadow: 0 0 40px rgba(43, 221, 138, 0.08);
}

.modal-header {
    border-bottom: 1px solid rgba(43, 221, 138, 0.12);
}

.modal-footer {
    border-top: 1px solid rgba(43, 221, 138, 0.12);
}
