/*
Theme Name: HLL BanSystem
Theme URI: https://hackletloose.eu
Author: Hack let Loose
Description: Modernes, dunkles Dashboard-Theme für das HLL BanSystem & Checkpoint-Integration.
Version: 1.0
Text Domain: hll-bansystem
*/

/* ========= Design-Variablen ========= */
:root {
    --bg-body: #05070c;
    --bg-elevated: #101624;
    --bg-elevated-soft: rgba(16, 22, 36, 0.92);
    --bg-hero-gradient: radial-gradient(circle at top left, #243663 0, #05070c 55%, #05070c 100%);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --accent: #f5b544;
    --accent-soft: rgba(245, 181, 68, 0.18);
    --accent-strong: #ffcc4d;
    --text-main: #f9fafb; 
    --text-muted: #e3e4e6;
    --danger: #f97373;
    --success: #4ade80;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* ========= Base ========= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-hero-gradient);
    color: var(--text-main);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* ========= App-Shell ========= */

.app-body {
    min-height: 100vh;
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */

.app-header {
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(18px);
    background: linear-gradient(
        120deg,
        rgba(5, 9, 18, 0.96),
        rgba(12, 18, 30, 0.96)
    );
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 0;
    z-index: 50;
}

.app-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-logo-image img.custom-logo {
    display: block;
    max-height: 40px;   /* ggf. anpassen */
    width: auto;
}

.app-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(245, 181, 68, 0.6);
    background: radial-gradient(circle at 30% 20%, #f5b544 0, #f97316 26%, #111827 70%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #05070c;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 25px rgba(245, 181, 68, 0.65);
}

.app-logo-text-main {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.app-logo-text-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Header-Navigation */

.app-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.app-nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;

}

.app-nav-menu li {
    list-style: none;
}

.app-nav-menu a {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.2rem 0;
    position: relative;
}

.app-nav-menu a:hover {
    color: var(--text-main);
}

.app-nav-menu .current-menu-item > a::after,
.app-nav-menu a:focus-visible::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

/* User Badge */

.app-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-user-badge span {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hauptbereich */

.app-main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 1.75rem auto 2.5rem;
    padding: 0 1.5rem 0.5rem;
}

/* Footer */

.app-footer {
    border-top: 1px solid var(--border-subtle);
    background: rgba(3, 7, 18, 0.96);
    padding: 0.9rem 1.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.app-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

/* ========= Hero & Dashboard ========= */

.hero {
    border-radius: var(--radius-xl);
    padding: 2.3rem 2rem 2rem;
    background:
        radial-gradient(circle at 10% 0, rgba(245, 181, 68, 0.2), transparent 55%),
        radial-gradient(circle at 90% 0, rgba(59, 130, 246, 0.16), transparent 55%),
        linear-gradient(135deg, rgba(15,23,42,0.96), rgba(2,6,23,0.98));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 130%, rgba(15, 23, 42, 0.8), transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr);
    gap: 2rem;
}

.hero-title {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 36rem;
    font-size: 0.95rem;
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.1rem;
}

.hero-pill {
    font-size: 0.78rem;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.55);
    color: var(--text-muted);
}

.hero-pill strong {
    color: var(--accent-strong);
}

/* Hero – Right (Login/Card) */

.hero-right-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: var(--shadow-subtle);
}

/* ========= Dashboard Sections ========= */

.dashboard-section {
    margin-bottom: 1.75rem;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.dashboard-section-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.dashboard-section-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.dashboard-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(245, 181, 68, 0.14), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.dashboard-card-inner {
    position: relative;
    z-index: 1;
}

.dashboard-card-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.dashboard-card-title {
    font-size: 0.98rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #ffcc4d;
}

.dashboard-card-text {
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* ========= Cards & Plugin-Ausgabe (Bootstrap-Override) ========= */

.card {
    background-color: var(--bg-elevated-soft) !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border-subtle) !important;
    box-shadow: var(--shadow-subtle) !important;
    color: var(--text-main);
}

.card-header {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.85)) !important;
    border-bottom-color: rgba(148, 163, 184, 0.35) !important;
}

.card-footer {
    background: rgba(15, 23, 42, 0.96) !important;
    border-top-color: rgba(148, 163, 184, 0.25) !important;
}

/* Container enger, damit Plugin-Container nicht springen */

.hll-checkpoint-setup .container,
.hll-credentials .container,
.hll-community-profile .container,
.hll-discord-login .container {
    max-width: 960px;
}

/* ========= Buttons & Forms ========= */

.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    border-color: var(--accent-strong);
    color: #111827;
    font-weight: 600;
    border-radius: 999px;
    padding-inline: 1.4rem;
}

.btn-primary:hover,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-strong), #ffe18a);
    border-color: #ffe18a;
    color: #111827;
    box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.24);
}

.form-control,
textarea.form-control {
    background-color: rgba(15, 23, 42, 0.96);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: var(--text-main);
    font-size: 0.9rem;
}

textarea.form-control {
    border-radius: 14px;
}

/* ========= Standard-Inhaltsseiten ========= */

.page-header-simple {
    margin-bottom: 1.5rem;
}

.page-header-simple h1 {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-header-simple p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Blog/Index */

.post-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1.3rem 1.4rem;
    box-shadow: var(--shadow-subtle);
}

.post-card-title a {
    color: #e5e7eb;
    text-decoration: none;
}

.post-card-title a:hover {
    color: var(--accent-strong);
}

.post-card-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

/* ========= Responsive ========= */

@media (max-width: 900px) {
    .app-header-inner {
        padding-inline: 1rem;
        flex-wrap: wrap;
    }
    .app-main {
        padding-inline: 1rem;
        margin-top: 1.25rem;
    }
    .hero {
        padding: 1.6rem 1.4rem;
    }
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
    .dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .app-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-right-card--logged-out {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-right-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-right-list {
    margin: 0 0 0.6rem;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-right-list li + li {
    margin-top: 0.15rem;
}

.hero-right-login-shortcode {
    margin-top: 0.4rem;
}

/* Falls der Shortcode einen sehr schmalen Button rendert, einmal strecken: */
.hero-right-login-shortcode .btn,
.hero-right-login-shortcode button {
    width: 100%;
}

/* Community-Profil – Feinschliff */

.hll-community-profile .hll-card {
    margin-bottom: 2rem;
}

.hll-toggle-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hll-toggle-item .form-check-input {
    cursor: pointer;
}

.hll-admin-primary {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: rgba(15, 23, 42, 0.9);
}

.hll-admin-primary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hll-admin-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.hll-admin-value {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hll-admin-primary-row {
        flex-direction: column;
    }
}

.hll-channels-table-wrapper {
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.hll-channels-table thead tr {
    background: rgba(15, 23, 42, 0.98);
}

.hll-channels-table thead th {
    border-bottom-color: rgba(148, 163, 184, 0.35);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hll-channel-row td {
    border-top-color: rgba(31, 41, 55, 0.7);
    font-size: 0.88rem;
}

.hll-channel-row--active {
    background: rgba(245, 181, 68, 0.06);
}

.hll-channel-row--active td:first-child {
    border-left: 3px solid var(--accent-strong);
}

.hll-channels-table code {
    font-size: 0.78rem;
}

/* ==== Globale Lesbarkeit für "muted" Texte verbessern ==== */

/* Alle gedämpften Texte deutlich heller machen */
.text-muted,
.form-text,
small {
    color: #d4d4d8 !important;  /* helles Grau auf dunklem Hintergrund */
    opacity: 1 !important;      /* eventuell gesetzte Transparenz killen */
}

/* In unseren HLL-Bereichen gern noch explizit */
.hll-community-profile .text-muted,
.hll-community-profile .form-text {
    color: #d6d6db !important;
}


/* ============================
 * User-Menü im Header
 * ============================ */

.app-user-menu {
    position: relative;
    display: inline-block;
}

/* Toggle-Button (Username + Punkt + Pfeil) */
.app-user-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.95);
    font-size: 0.8rem;
    line-height: 1.2;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: none;
}

.app-user-menu-toggle:hover,
.app-user-menu-toggle:focus-visible {
    border-color: var(--accent-strong);
    color: var(--text-main);
    box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.18);
}

.app-user-menu-name {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-user-menu-dot {
    font-size: 0.7rem;
    color: var(--success);
}

.app-user-menu-caret {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Dropdown-Panel */

.app-user-menu-dropdown {
    position: absolute;
    right: 0;
    margin-top: 0.4rem;
    min-width: 240px;
    background: rgba(15, 23, 42, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    padding: 0.35rem 0;
    display: none;             /* wichtig: standardmäßig versteckt */
    z-index: 80;
}

/* anzeigen bei Hover / Fokus */
.app-user-menu:hover .app-user-menu-dropdown,
.app-user-menu:focus-within .app-user-menu-dropdown {
    display: block;
}

.app-user-menu-section {
    padding: 0.45rem 0.9rem 0.25rem;
}

.app-user-menu-section-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    opacity: 0.9;
}

/* Items */

.app-user-menu-item {
    display: block;
    width: 100%;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    color: var(--text-main);
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
}

.app-user-menu-item:hover {
    background: rgba(30, 64, 175, 0.5);
    text-decoration: none;
}

.app-user-menu-item-disabled {
    color: var(--text-muted);
    cursor: default;
}

.app-user-menu-item-disabled:hover {
    background: transparent;
}

.app-user-menu-divider {
    height: 1px;
    margin: 0.3rem 0.75rem;
    background: rgba(148, 163, 184, 0.35);
}

.app-user-menu-logout {
    color: #fecaca;
}

.app-user-menu-logout:hover {
    background: rgba(127, 29, 29, 0.7);
}

/* --- Ban-Suche: Kachel-Layout ----------------------------------- */

.hll-ban-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.hll-ban-card {
    background: rgba(7, 12, 24, 0.95);
    border-radius: 1rem;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
    cursor: default;
}

.hll-ban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    border-color: rgba(255, 215, 0, 0.4);
}

.hll-ban-card-title {
    font-size: 0.98rem;
}

.hll-ban-card-body {
    font-size: 0.85rem;
}

.hll-ban-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.hll-ban-media-item img,
.hll-ban-media-item video {
    display: block;
    width: 100%;
}

/* Bannsuche im Header */
.app-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-nav-ban-search {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background-color: rgba(15, 23, 42, 0.7);
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.app-nav-ban-search-input {
    border: none;
    background: transparent;
    color: inherit;
    font-size: 0.85rem;
    padding: 0.2rem 0.1rem;
    min-width: 180px;
}

.app-nav-ban-search-input:focus {
    outline: none;
    box-shadow: none;
}

.app-nav-ban-search-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    color: inherit;
}

.app-nav-ban-search-button:hover {
    opacity: 0.8;
}

.dashboard-grid--metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.dashboard-card--metric .dashboard-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-metric-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.dashboard-metric-value {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
}

.dashboard-metric-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ========= FAQ kompakter darstellen ========= */

.faq-section .post-card-body {
    padding: 1.1rem 1.25rem;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.75rem;
    row-gap: 1.1rem;
}

.faq-item {
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.75rem;
}

.faq-item:nth-child(1),
.faq-item:nth-child(2) {
    border-top: none;
    padding-top: 0;
}

.faq-question {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffcc4d;
}

.faq-answer {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mobile: eine Spalte statt zwei */

@media (max-width: 900px) {
    .faq-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .faq-item {
        border-top: 1px solid var(--border-subtle);
    }

    .faq-item:first-child {
        border-top: none;
        padding-top: 0;
    }
}

/* --- Bannsuche Layout -------------------------------------------------- */

.hll-ban-search-inner {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.4rem 1.3rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-subtle);
}

/* Formular-Layout oben */

.hll-ban-search-form {
    margin-bottom: 0.75rem;
}

.hll-ban-search-row {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr) auto;
    gap: 1rem;
    align-items: flex-end;
}

.hll-ban-search-input .form-control,
.hll-ban-search-status .form-select {
    width: 100%;
}

.hll-ban-search-actions .btn {
    white-space: nowrap;
}

/* Feedback-Zeile */

.hll-ban-search-feedback {
    font-size: 0.8rem;
}

/* Toolbar über der Liste */

.hll-ban-results-toolbar {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding-top: 0.75rem;
    margin-top: 0.35rem;
}

/* Pagination unten */

.hll-ban-search-pagination {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding-top: 0.75rem;
    margin-top: 1rem;
}

.hll-ban-page-info {
    font-size: 0.78rem;
}

/* Responsive: Formular spaltenweise untereinander */

@media (max-width: 900px) {
    .hll-ban-search-row {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .hll-ban-search-actions .d-flex {
        justify-content: flex-start;
    }
}
.form-select,
.form-select-sm {
    background-color: rgba(15, 23, 42, 0.96);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-select:focus,
.form-select-sm:focus {
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.18);
    outline: none;
}

.btn-outline-secondary,
.btn-outline-light {
    border-radius: 999px;
    font-weight: 500;
}

.btn-outline-secondary {
    border-color: rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
}

.btn-outline-secondary:hover {
    background-color: rgba(148, 163, 184, 0.16);
    color: #f9fafb;
}

.btn-outline-light {
    border-color: rgba(229, 231, 235, 0.8);
    color: #e5e7eb;
}

.btn-outline-light:hover {
    background-color: rgba(249, 250, 251, 0.14);
    color: #f9fafb;
}
