/*
 * Tehono Market - Page Paramètres
 * Layout 2 colonnes : nav latérale + contenu sections.
 */

:root {
    --st-bg:           #0a0b0e;
    --st-card:         rgba(255,255,255,0.03);
    --st-border:       rgba(255,255,255,0.08);
    --st-border-hover: rgba(255,255,255,0.18);
    --st-text:         #e8e8e8;
    --st-text-dim:     rgba(255,255,255,0.55);
    --st-accent:       #fff;
    --st-warn:         #f39c12;
    --st-danger:       #e74c3c;
    --st-info:         #3498db;
    --st-radius:       12px;
    --st-font:         'Montserrat', system-ui, -apple-system, sans-serif;
}

.th-st-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 40px;
    color: var(--st-text);
    font-family: var(--st-font);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px;
}

/* ── Header ────────────────────────────────────────────── */
.th-st-header {
    margin-bottom: 28px;
    text-align: center;
}
.th-st-title {
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 6px;
    color: #fff;
    letter-spacing: -0.5px;
}
.th-st-subtitle {
    font-size: 13px;
    color: var(--st-text-dim);
    margin: 0;
}

/* ── Layout (plus de 2 colonnes - onglets au-dessus) ────── */
.th-st-layout {
    display: block;
}

/* ── Navigation laterale - masquee (remplacee par onglets) ── */
.th-st-nav {
    display: none !important;
}
.th-st-nav-btn, .th-st-nav-icon, .th-st-nav-label { display: none !important; }

/* ── Onglets horizontaux ─────────────────────────────────── */
.th-st-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--st-border);
}
.th-st-tab {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #888;
    font-family: var(--st-font);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.th-st-tab:hover {
    color: #ccc;
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
}
.th-st-tab.active {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}

/* ── Contenu ───────────────────────────────────────────── */
.th-st-content {
    min-width: 0;
}
.th-st-section {
    display: none;
    animation: thStFade 0.25s ease;
}
.th-st-section.active {
    display: block;
}
@keyframes thStFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.th-st-section-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
}
.th-st-section-desc {
    font-size: 13px;
    color: var(--st-text-dim);
    margin: 0 0 18px;
    line-height: 1.6;
}

/* ── Cards ─────────────────────────────────────────────── */
.th-st-card {
    background: var(--st-card);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    padding: 22px;
    margin-bottom: 16px;
}
/* Le titre des cards (premier strong direct) est en bloc, mais les strong
   imbriqués dans les paragraphes restent inline. */
.th-st-card > strong:first-child {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}
.th-st-card p strong {
    color: #fff;
    font-weight: 700;
}
.th-st-card-desc {
    font-size: 13px;
    color: var(--st-text-dim);
    line-height: 1.6;
    margin: 0 0 14px;
}
.th-st-card-info {
    background: rgba(52,152,219,0.06);
    border-color: rgba(52,152,219,0.25);
}
.th-st-card-info p {
    color: var(--st-text-dim);
    font-size: 12px;
    line-height: 1.6;
    margin: 6px 0 0;
}
.th-st-card-warn {
    background: rgba(243,156,18,0.06);
    border-color: rgba(243,156,18,0.3);
}
.th-st-card-danger {
    background: rgba(231,76,60,0.06);
    border-color: rgba(231,76,60,0.3);
}
.th-st-warn-text {
    color: var(--st-warn) !important;
    font-weight: 600;
}
.th-st-warn-list {
    margin: 10px 0 0;
    padding-left: 20px;
    color: var(--st-text-dim);
    font-size: 12px;
    line-height: 1.7;
}

/* ── Avatar row ────────────────────────────────────────── */
.th-st-avatar-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--st-border);
}
.th-st-avatar-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    flex-shrink: 0;
}
.th-st-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    background: none;
}
.th-st-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--st-accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid var(--st-bg);
    transition: transform 0.18s ease;
}
.th-st-avatar-edit:hover {
    transform: scale(1.1);
}
.th-st-avatar-info {
    flex: 1;
    min-width: 0;
}
.th-st-avatar-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.th-st-avatar-wallet {
    font-family: monospace;
    font-size: 11px;
    color: var(--st-accent);
    background: rgba(46,204,113,0.06);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(46,204,113,0.25);
    display: inline-block;
}

/* ── Form grid ─────────────────────────────────────────── */
.th-st-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-bottom: 18px;
}
/* Evite que le contenu des selects/inputs déborde de la cellule */
.th-st-form-grid .th-st-field {
    min-width: 0;
}
.th-st-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/* Ordre explicite : label (1), hint (2), tout le reste (3). Place le hint
   systematiquement entre le titre et le champ, quel que soit l'ordre HTML. */
.th-st-field > * { order: 3; }
.th-st-field > .th-st-field-label { order: 1; }
.th-st-field > .th-st-field-hint  { order: 2; margin-top: 0; }
.th-st-field-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--st-text-dim);
}
/* Tooltip "i" inline dans le label d'un champ. */
.th-st-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    cursor: help;
    vertical-align: middle;
}
.th-st-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, serif;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.15s, color 0.15s;
}
.th-st-tooltip:hover .th-st-tooltip-icon,
.th-st-tooltip:focus .th-st-tooltip-icon {
    background: rgba(46,204,113,0.20);
    color: #2ecc71;
}
.th-st-tooltip-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    padding: 10px 12px;
    background: #18181d;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #ccc;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s, visibility 0.15s;
    z-index: 10;
}
.th-st-tooltip-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #18181d;
}
.th-st-tooltip:hover .th-st-tooltip-bubble,
.th-st-tooltip:focus .th-st-tooltip-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.th-st-field input,
.th-st-field select,
.th-st-toggle-row select {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--st-border);
    border-radius: 8px;
    padding: 11px 14px;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.4;
    height: auto;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}
/* Chevron custom pour les selects */
.th-st-field select,
.th-st-toggle-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
    /* Empêche la troncature des labels d'option */
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
}
.th-st-field input:focus,
.th-st-field select:focus,
.th-st-toggle-row select:focus {
    outline: none;
    border-color: var(--st-accent);
    background: rgba(0,0,0,0.55);
    box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
}
.th-st-field input::placeholder {
    color: rgba(255,255,255,0.3);
}
.th-st-field select option {
    background: #16171c;
    color: #fff;
}

/* Force la couleur du texte saisi au clavier a rester blanche, y compris
   pour les textarea (non couverts par la regle generique) et pour les cas
   ou Elementor/theme injecte une couleur plus sombre. caret-color garantit
   aussi que le curseur est visible sur fond noir. */
.th-st-field input,
.th-st-field select,
.th-st-field textarea,
.th-st-toggle-row select,
#th-settings-wrap input[type="text"],
#th-settings-wrap input[type="email"],
#th-settings-wrap input[type="date"],
#th-settings-wrap input[type="password"],
#th-settings-wrap input[type="number"],
#th-settings-wrap select,
#th-settings-wrap textarea {
    color: #fff !important;
    caret-color: #fff;
    -webkit-text-fill-color: #fff !important;
}

/* Autofill (Chrome/WebKit/Safari) : par defaut le navigateur applique un
   background jaune et un texte noir sur les champs auto-remplis (email,
   password). On neutralise en forcant texte blanc et un background fonce
   via un inset shadow (technique standard pour contourner l'autofill). */
#th-settings-wrap input:-webkit-autofill,
#th-settings-wrap input:-webkit-autofill:hover,
#th-settings-wrap input:-webkit-autofill:focus,
#th-settings-wrap input:-webkit-autofill:active,
#th-settings-wrap select:-webkit-autofill,
#th-settings-wrap textarea:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(0,0,0,0.4) inset !important;
    caret-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
}

/* ── Toggle (checkbox stylé) ───────────────────────────── */
.th-st-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.th-st-toggle-row > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
}
.th-st-toggle-row select {
    width: auto;
    flex: 0 0 180px;
    max-width: 180px;
}
.th-st-toggle-desc {
    font-size: 12px;
    color: var(--st-text-dim);
    margin: 4px 0 0;
    line-height: 1.5;
}
.th-st-toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.th-st-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.th-st-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--st-border);
    border-radius: 34px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.th-st-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    transition: all 0.25s ease;
}
.th-st-toggle input:checked + .th-st-toggle-slider {
    background: rgba(46,204,113,0.4);
    border-color: rgba(46,204,113,0.6);
}
.th-st-toggle input:checked + .th-st-toggle-slider::before {
    transform: translate(20px, -50%);
    background: var(--st-accent);
}

/* ── Info rows (sécurité) ──────────────────────────────── */
.th-st-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--st-border);
    gap: 16px;
}
.th-st-info-row:last-child {
    border-bottom: none;
}
.th-st-info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--st-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.th-st-info-value {
    font-size: 13px;
    color: #fff;
    text-align: right;
}
.th-st-mono {
    font-family: monospace;
    font-size: 11px;
    color: var(--st-accent);
}

/* ── Boutons ───────────────────────────────────────────── */
.th-st-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.th-st-btn-primary,
.th-st-btn-secondary,
.th-st-btn-danger {
    padding: 11px 22px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.th-st-btn-primary {
    background: #fff !important;
    color: #0a0a0a !important;
    border: none !important;
    box-shadow: none;
}
.th-st-btn-primary:hover {
    transform: translateY(-1px);
    background: #e0e0e0 !important;
    box-shadow: 0 6px 20px rgba(255,255,255,0.1);
}
.th-st-btn-secondary {
    background: transparent;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.12);
}
.th-st-btn-secondary:hover {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}
.th-st-btn-secondary:hover {
    background: rgba(52,152,219,0.2);
    border-color: rgba(52,152,219,0.6);
}
.th-st-btn-danger {
    background: rgba(231,76,60,0.1);
    color: var(--st-danger);
    border: 1px solid rgba(231,76,60,0.4);
}
.th-st-btn-danger:hover:not([disabled]) {
    background: rgba(231,76,60,0.2);
    border-color: rgba(231,76,60,0.6);
}
.th-st-btn-danger[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ── Listes followers/following ───────────────────────── */
.th-st-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.th-st-count {
    display: inline-block;
    background: rgba(46,204,113,0.15);
    color: var(--st-accent);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
}
.th-st-list {
    margin-top: 12px;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.th-st-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.18s ease;
}
.th-st-list-item:hover {
    background: rgba(255,255,255,0.04);
}
/* Lien cliquable vers le profil (avatar + nom + meta) */
.th-st-list-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
    border-radius: 6px;
    padding: 2px 4px;
    transition: background 0.15s ease;
}
.th-st-list-link:hover {
    background: rgba(255,255,255,0.04);
}
.th-st-list-link:hover .th-st-list-name {
    color: var(--st-accent);
}
/* Bouton Ne plus suivre */
.th-st-unfollow-btn {
    flex-shrink: 0;
    background: none;
    border: 1px solid rgba(231,76,60,0.3);
    color: rgba(231,76,60,0.7);
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.th-st-unfollow-btn:hover {
    background: rgba(231,76,60,0.12);
    border-color: rgba(231,76,60,0.6);
    color: #e74c3c;
}
.th-st-unfollow-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.th-st-list-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #16171c;
}
.th-st-list-info {
    flex: 1;
    min-width: 0;
}
.th-st-list-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.th-st-list-meta {
    font-size: 10px;
    color: var(--st-text-dim);
    margin: 2px 0 0;
}
.th-st-empty {
    color: var(--st-text-dim);
    font-size: 12px;
    text-align: center;
    padding: 20px 10px;
    margin: 0;
}

/* ── Toast ─────────────────────────────────────────────── */
.th-st-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #16171c;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    border: 1px solid var(--st-accent);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99999;
    pointer-events: none;
}
.th-st-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.th-st-toast.error {
    border-color: var(--st-danger);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
    .th-st-form-grid,
    .th-st-grid-2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .th-st-wrap {
        padding: 20px 16px;
    }
    .th-st-card {
        padding: 18px;
    }
    .th-st-avatar-row {
        flex-direction: column;
        text-align: center;
    }
    .th-st-tabs {
        gap: 4px;
    }
    .th-st-tab {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ═══ Préférences de notifications par type ═══ */
/* Reset complet des styles table WordPress par défaut */
.th-st-notif-table,
.th-st-notif-table thead,
.th-st-notif-table tbody,
.th-st-notif-table tr,
.th-st-notif-table th,
.th-st-notif-table td {
    border: none !important;
    border-spacing: 0 !important;
    border-collapse: collapse !important;
    box-shadow: none !important;
    outline: none !important;
    background-image: none !important;
}
/* Champ email pleine largeur dans la grille profil */
.th-st-field-full {
    grid-column: 1 / -1;
}
.th-st-field-hint {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    /* Annule l'heritage .th-st-field-label (uppercase + letter-spacing) quand le
       hint est niche a l'interieur d'un label ; garantit un rendu coherent
       partout, quelle que soit la position du span. */
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}
.th-st-notif-header {
    margin-bottom: 16px;
}
.th-st-notif-prefs {
    margin: 16px 0 18px 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow-y: auto;
    max-height: 520px;
}
.th-st-notif-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.th-st-notif-table th {
    background: rgba(230,126,34,0.08);
    color: #e67e22;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(230,126,34,0.18);
    position: sticky;
    top: 0;
    z-index: 2;
    background: #000 !important;
}
.th-st-notif-th-channel {
    text-align: center !important;
    width: 100px;
}
.th-st-notif-toggle-all {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 5px;
}
.th-st-notif-toggle-all button {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.15s ease;
}
.th-st-notif-toggle-all button:hover {
    border-color: #e67e22;
    color: #e67e22;
    background: rgba(230,126,34,0.08);
}
.th-st-notif-table td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.88);
}
.th-st-notif-table tbody tr:last-child td {
    border-bottom: none;
}
.th-st-notif-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}
.th-st-notif-group-row td {
    background: rgba(255,255,255,0.025) !important;
    padding: 9px 14px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.55);
    font-weight: 700;
}
.th-st-notif-group-icon {
    margin-right: 6px;
}
.th-st-notif-td-event {
    font-weight: 600;
}
.th-st-notif-td-channel {
    text-align: center;
}
.th-st-mini-toggle {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    cursor: pointer;
}
.th-st-mini-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.th-st-mini-toggle span {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: background 0.2s;
}
.th-st-mini-toggle span::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}
.th-st-mini-toggle input:checked + span {
    background: #e67e22;
}
.th-st-mini-toggle input:checked + span::before {
    transform: translateX(16px);
}
.th-st-notif-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    padding-top: 4px;
}
.th-st-notif-save-status {
    font-size: 12px;
    color: #2ecc71;
    font-weight: 700;
}
.th-st-notif-save-status.error {
    color: #e74c3c;
}
