/**
 *
 * @package phpBB Extension - Board Magic
 * @copyright (c) 2024 SpIdErPiGgY
 * @license GNU General Public License v2
 *
 */

/* ==========================================================
   security-banner
========================================================== */
.security-banner {
    text-align: center;
    margin: 25px auto 15px auto;
    font-size: 12px;
    letter-spacing: 0.4px;
}

/* ✨ De bubble */
.security-banner strong {
    display: inline-block;
    padding: 8px 14px;

    border-radius: 999px;

    /* Semi-transparante achtergrond → werkt op licht & donker */
    background: rgba(0, 0, 0, 0.65);

    /* Subtiele blur voor fancy effect (optioneel maar mooi) */
    backdrop-filter: blur(6px);

    /* Zachte glow */
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.1);

    color: #ffffff;
    font-weight: 600;
}

/* Tekst */
.sec-white {
    color: #ffffff;
}

/* Links */
.sec-link {
    color: #ff7a1a;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sec-link:hover {
    color: #ffb066;
    text-decoration: underline;
}
