* { box-sizing: border-box; }

body {
    font-family: -apple-system, "Segoe UI", Arial, sans-serif;
    background: #dae0e6;
    margin: 0;
    color: #1a1a1b;
}

a { text-decoration: none; color: #0079d3; }
a:hover { text-decoration: underline; }

header.topbar {
    background: #1f5e3b;
    color: white;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

header.topbar .logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

header.topbar .logo img {
    height: 150px;
    width: auto;
    display: block;
}


header.topbar nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

header.topbar nav a {
    color: white;
    margin-left: 0;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 0 15px;
    align-items: flex-start;
}

.news-col { flex: 1.2; min-width: 260px; }
.main-col { flex: 2; min-width: 0; }
.side-col { flex: 1; min-width: 220px; }

.card {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 12px;
}

.post-item {
    display: flex;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.vote-col {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    min-width: 45px;
}

.vote-col form { margin: 2px 0; }

.vote-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #878a8c;
    padding: 2px;
}

.vote-btn.up.active { color: #ff4500; }
.vote-btn.down.active { color: #7193ff; }

.score { font-weight: bold; font-size: 13px; }

.post-body-col { padding: 12px 15px; flex: 1; }

.post-meta {
    font-size: 12px;
    color: #787c7e;
    margin-bottom: 4px;
}

.post-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #222;
}

.post-title a { color: #222; }

.post-text {
    font-size: 14px;
    color: #333;
    white-space: pre-wrap;
    margin: 8px 0;
}

.comment-count {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

form.inline-form { display: inline; }

label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
}

input[type=text], input[type=password], input[type=email], textarea, select {
    width: 100%;
    padding: 8px;
    margin: 6px 0 12px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

button, .btn {
    background: #A67C52;
    color: white;
    border: none;
    padding: 9px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

button:hover, .btn:hover {
    background: #8B5E3C;
    opacity: 1;
    text-decoration: none;
}

.btn-secondary {
    background: #edeff1;
    color: #1a1a1b;
}

.alert {
    background: #ffe9e9;
    border: 1px solid #ffb3b3;
    color: #b30000;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.community-list a {
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    color: #1a1a1b;
}

.sort-links a {
    margin-right: 12px;
    font-weight: 600;
    color: #555;
}
.sort-links a.active { color: #ff4500; }

.avatar-img {
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
}

.avatar-fallback {
    display: inline-block;
    border-radius: 50%;
    background: #ff4500;
    color: white;
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
}

.post-image {
    max-width: 100%;
    max-height: 500px;
    border-radius: 6px;
    margin: 8px 0;
    display: block;
}

.comment-image {
    max-width: 260px;
    max-height: 260px;
    border-radius: 6px;
    margin: 6px 0;
    display: block;
}

.link-card {
    display: block;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 10px;
    margin: 8px 0;
    background: #f6f7f8;
    font-size: 13px;
    color: #0079d3;
    word-break: break-all;
}

.news-item {
    display: flex;
    gap: 10px;
    color: #1a1a1b;
    align-items: center;
}

.news-item:hover {
    text-decoration: none;
    background: #f6f7f8;
}

.news-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    border: 1px solid #eee;
    background: #f0f0f0;
}

.news-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin: 2px 0 4px 0;
    line-height: 1.3;
}

.news-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

.mini-preview {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.mini-preview:last-child { border-bottom: none; }

.news-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #fff3e0;
}

.trending-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.search-box {
    display: flex;
    gap: 6px;
    margin-left: auto;
    margin-right: 15px;
}

.search-box input[type=text] {
    margin: 0;
    padding: 6px 10px;
    width: 180px;
    font-size: 13px;
}

.search-box button {
    padding: 6px 12px;
    background: white;
    color: #8B5E3C;
}

.giphy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-height: 300px;
    overflow-y: auto;
    margin: 8px 0;
}

.giphy-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.giphy-grid img:hover {
    border-color: #ff4500;
}

.media-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.media-tabs button {
    background: #edeff1;
    color: #1a1a1b;
    font-size: 13px;
    padding: 6px 12px;
}

.media-tabs button.active {
    background: #ff4500;
    color: white;
}

.media-panel { display: none; }
.media-panel.active { display: block; }

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-footer a {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
    border-radius: 4px;
}

.sidebar-footer a:hover {
    background: #f6f7f8;
    text-decoration: none;
}

.sidebar-footer .donate-link {
    color: #b8860b;
    font-weight: 700;
}

.site-footer {
    text-align: center;
    padding: 20px 10px;
    margin: 30px auto 0 auto;
    font-size: 12px;
    color: #787c7e;
    max-width: 1200px;
    border-top: 1px solid #ccc;
}

.user-menu {
    position: relative;
    display: inline-block;
}

.user-menu-toggle {
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 4px;
    position: relative;
}

.menu-dot {
    width: 8px;
    height: 8px;
    background: #ffeb3b;
    border-radius: 50%;
    display: inline-block;
    margin-left: -2px;
}

.user-menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 6px;
    background: white;
    color: #1a1a1b;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    min-width: 240px;
    padding: 8px 0;
    z-index: 100;
}

.user-menu-dropdown.open { display: block; }

.user-menu-dropdown a {
    display: block;
    padding: 9px 16px;
    color: #1a1a1b !important;
    font-size: 14px;
}

.user-menu-dropdown a:hover {
    background: #f6f7f8;
    text-decoration: none;
}

.user-menu-divider {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

.user-menu-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    padding: 4px 16px;
    font-weight: 700;
}

.profile-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    margin-bottom: 12px;
}

.profile-social a { color: #0079d3; }

.poll-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px;
    margin: 10px 0;
    background: #fafafa;
}

.poll-question {
    font-weight: 600;
    margin-bottom: 10px;
}

.poll-option-label {
    display: block;
    font-weight: normal;
    padding: 6px 0;
    font-size: 14px;
}

.poll-result { margin-bottom: 10px; }

.poll-result-label {
    font-size: 13px;
    margin-bottom: 3px;
}

.poll-bar-bg {
    background: #e4e4e4;
    border-radius: 6px;
    height: 10px;
    overflow: hidden;
}

.poll-bar-fill {
    background: #0079d3;
    height: 100%;
}

.poll-bar-fill.mine { background: #ff4500; }

.poll-total {
    font-size: 12px;
    color: #787c7e;
    margin-top: 6px;
}

.format-toolbar {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.format-toolbar button {
    background: #edeff1;
    color: #1a1a1b;
    font-size: 13px;
    padding: 5px 10px;
}

.emoji-panel {
    display: none;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 140px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 8px;
    background: white;
}

.emoji-panel.open { display: flex; }

.emoji-panel span {
    cursor: pointer;
    font-size: 20px;
    padding: 3px;
}

.emoji-panel span:hover { background: #f0f0f0; border-radius: 4px; }

.poll-fields {
    display: none;
    border: 1px dashed #ccc;
    border-radius: 6px;
    padding: 12px;
    margin: 10px 0;
}

.poll-fields.open { display: block; }

.mini-post-item {
    display: flex;
    gap: 8px;
    align-items: baseline;
    padding: 7px 0;
    border-bottom: 1px solid #eee;
    color: #1a1a1b;
    font-size: 13px;
}

.mini-post-item:last-child { border-bottom: none; }

.mini-post-item:hover { color: #ff4500; text-decoration: none; }

.mini-post-score {
    font-weight: 700;
    color: #ff4500;
    flex-shrink: 0;
    min-width: 22px;
}

.mini-post-title {
    line-height: 1.3;
}

.comment-preview {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: #f6f7f8;
    border-radius: 6px;
    padding: 8px 10px;
    margin: 8px 0;
    font-size: 13px;
}

.comment-preview .comment-preview-text {
    color: #444;
}

.comment-preview .comment-preview-author {
    font-weight: 600;
    color: #1a1a1b;
}

.badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

.badge-verified {
    background: #1d9bf0;
    color: white;
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 11px;
}

.premium-fields {
    border: 1px solid #e0c168;
    background: #fffaf0;
    border-radius: 8px;
    padding: 14px;
    margin: 15px 0;
}

.premium-teaser {
    background: #fffaf0;
    border: 1px dashed #e0c168;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: #6b5a1e;
    margin: 15px 0;
}

.badge-premium {
    background: linear-gradient(135deg, #f6d365, #b8860b);
    color: #3a2b00;
    font-weight: 800;
}

.badge-mod {
    background: #46d160;
    color: #073b0f;
}

.badge-admin {
    background: #ff4500;
    color: white;
}

.profile-card {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.profile-banner {
    height: 100px;
    background: linear-gradient(135deg, #6e7f8d, #99a6b0);
}

.banner-admin { background: linear-gradient(135deg, #ff4500, #ff8a50); }
.banner-mod { background: linear-gradient(135deg, #1a9b4b, #46d160); }
.banner-user { background: linear-gradient(135deg, #6e7f8d, #99a6b0); }
.banner-premium { background: linear-gradient(135deg, #f6d365, #b8860b); }

.profile-info {
    padding: 0 24px 24px 24px;
}

.profile-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.profile-avatar-wrap {
    margin-top: -50px;
}

.profile-avatar-wrap .avatar-img,
.profile-avatar-wrap .avatar-fallback {
    border: 4px solid white;
}

.profile-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-top: 12px;
}

.profile-username {
    margin: 4px 0 0 0;
}

.profile-profession {
    font-size: 14px;
    color: #444;
    margin-top: 6px;
}

.profile-meta-row {
    font-size: 12px;
    color: #787c7e;
    margin: 8px 0 14px 0;
}

.profile-bio {
    font-size: 14px;
    color: #333;
    margin: 0 0 16px 0;
}

.profile-stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #787c7e;
    text-decoration: none;
}

.stat-box:hover { text-decoration: none; color: #ff4500; }

.stat-box strong {
    font-size: 18px;
    color: #1a1a1b;
}

.long-text p {
    line-height: 1.7;
    margin: 0 0 16px 0;
    color: #333;
    font-size: 15px;
}

.long-text p:last-child { margin-bottom: 0; }

.follow-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.follow-tabs a {
    font-weight: 600;
    color: #787c7e;
}

.follow-tabs a.active {
    color: #ff4500;
}

.user-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #1a1a1b;
}

.user-list-item:hover { text-decoration: none; background: #f6f7f8; }

table.admin-table {
    width: 100%;
    border-collapse: collapse;
}

table.admin-table th, table.admin-table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.delete-link {
    color: #b30000;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}

.comment {
    border-left: 2px solid #edeff1;
    padding-left: 12px;
    margin-top: 12px;
}

.comment-meta {
    font-size: 12px;
    color: #787c7e;
}

.comment-body {
    font-size: 14px;
    margin: 4px 0;
    white-space: pre-wrap;
}

.reply-toggle {
    font-size: 12px;
    cursor: pointer;
    color: #555;
    font-weight: 600;
}


/* Ajuste especial: botón + Crear post alineado en el header */
header.topbar nav .btn {
    min-height: 36px;
    padding: 8px 16px !important;
    line-height: 1.2;
}


/* =========================================================
   MODO OSCURO PREMIUM - TheBranchy
   Solo se activa cuando <body> tiene class="dark-mode".
   La clase solo se agrega a usuarios Premium con dark_mode=1.
   ========================================================= */

.dark-mode-form {
    margin: 0;
}

.dark-mode-button {
    display: block;
    width: 100%;
    background: transparent !important;
    color: #1a1a1b !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 9px 12px !important;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none !important;
}

.dark-mode-button:hover {
    background: #f6f7f8 !important;
    color: #1a1a1b !important;
    text-decoration: none;
}

body.dark-mode {
    background: #0d1117;
    color: #e6edf3;
}

body.dark-mode header.topbar {
    background: #10291f;
    box-shadow: 0 2px 10px rgba(0,0,0,.45);
}

body.dark-mode a {
    color: #7cc7ff;
}

body.dark-mode .card,
body.dark-mode .post-item,
body.dark-mode .news-item.card,
body.dark-mode .poll-box,
body.dark-mode .comment,
body.dark-mode .profile-card,
body.dark-mode .stat-box,
body.dark-mode .mini-post-item,
body.dark-mode table.admin-table,
body.dark-mode .search-suggestions,
body.dark-mode .user-menu-dropdown {
    background: #161b22;
    border-color: #30363d;
    color: #e6edf3;
}

body.dark-mode .vote-col {
    background: #0f1720;
}

body.dark-mode .post-title,
body.dark-mode .post-title a,
body.dark-mode .news-title,
body.dark-mode .mini-post-title,
body.dark-mode label,
body.dark-mode .poll-question,
body.dark-mode .profile-username,
body.dark-mode .comment-body,
body.dark-mode .long-text,
body.dark-mode .long-text p {
    color: #f0f6fc !important;
}

body.dark-mode .post-text,
body.dark-mode .news-desc,
body.dark-mode .post-meta,
body.dark-mode .comment-meta,
body.dark-mode .comment-count,
body.dark-mode .poll-total,
body.dark-mode .profile-meta-row,
body.dark-mode .profile-bio,
body.dark-mode .profile-profession,
body.dark-mode .mini-post-score,
body.dark-mode .search-suggestion-empty,
body.dark-mode .search-suggestions-title,
body.dark-mode .user-menu-label {
    color: #9da7b3 !important;
}

body.dark-mode .community-list a,
body.dark-mode .sidebar-footer a,
body.dark-mode .user-menu-dropdown a,
body.dark-mode .search-suggestion-item,
body.dark-mode .follow-tabs a,
body.dark-mode .user-list-item,
body.dark-mode .comment-preview {
    color: #e6edf3 !important;
    border-color: #30363d;
}

body.dark-mode .community-list a:hover,
body.dark-mode .sidebar-footer a:hover,
body.dark-mode .user-menu-dropdown a:hover,
body.dark-mode .search-suggestion-item:hover,
body.dark-mode .user-list-item:hover,
body.dark-mode .mini-post-item:hover,
body.dark-mode .comment-preview:hover,
body.dark-mode .dark-mode-button:hover {
    background: #21262d !important;
    color: #ffffff !important;
    text-decoration: none;
}

body.dark-mode input[type=text],
body.dark-mode input[type=password],
body.dark-mode input[type=email],
body.dark-mode input[type=file],
body.dark-mode textarea,
body.dark-mode select {
    background: #0d1117;
    border-color: #30363d;
    color: #e6edf3;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #7d8590;
}

body.dark-mode .search-box input[type=text] {
    background: #0d1117;
    color: #e6edf3;
    border-color: #30363d;
}

body.dark-mode .search-box button {
    background: #21262d;
    color: #f0c38a;
}

body.dark-mode .search-suggestions-title {
    background: #0f1720;
    border-color: #30363d;
}

body.dark-mode .user-menu-toggle {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

body.dark-mode .user-menu-divider {
    border-color: #30363d;
}

body.dark-mode .btn-secondary {
    background: #21262d;
    color: #e6edf3;
}

body.dark-mode .link-card {
    background: #0f1720;
    border-color: #30363d;
    color: #7cc7ff;
}

body.dark-mode .poll-bar-bg {
    background: #30363d;
}

body.dark-mode .poll-option-label {
    background: #0f1720;
    border-color: #30363d;
}

body.dark-mode .alert {
    background: #2d1b1b;
    border-color: #7a2b2b;
    color: #ffb4b4;
}

body.dark-mode .site-footer {
    color: #9da7b3;
}

body.dark-mode .news-thumb-placeholder {
    background: #21262d;
    color: #9da7b3;
}

body.dark-mode .emoji-panel {
    background: #161b22;
    border-color: #30363d;
}

body.dark-mode .emoji-panel span:hover {
    background: #21262d;
}


/* =========================================================
   FIX FINAL: hover verde comentarios + colores Premium
   Modo oscuro TheBranchy
   ========================================================= */

/* Botón de modo oscuro: que nunca quede texto invisible al hacer hover */
body.dark-mode .dark-mode-button,
body.dark-mode .user-menu-dropdown .dark-mode-button {
    color: #e6edf3 !important;
}

body.dark-mode .dark-mode-button:hover,
body.dark-mode .user-menu-dropdown .dark-mode-button:hover {
    background: #1f3b2d !important;
    color: #d9ffe8 !important;
    text-decoration: none !important;
}

/* Preview de comentarios en index: hover más claro, verde Branchy */
body.dark-mode .comment-preview {
    background: #18241d !important;
    border: 1px solid #2d4737 !important;
    color: #dcefe4 !important;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

body.dark-mode .comment-preview:hover {
    background: #244c36 !important;
    border-color: #4fb477 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 1px rgba(79,180,119,.28), 0 6px 16px rgba(0,0,0,.22);
    transform: translateY(-1px);
    text-decoration: none !important;
}

body.dark-mode .comment-preview:hover .comment-preview-author {
    color: #baf7cc !important;
}

body.dark-mode .comment-preview:hover .comment-preview-text,
body.dark-mode .comment-preview:hover .comment-preview-body {
    color: #ffffff !important;
}

/* Si el comentario premium trae color inline, debe ganar contra el modo oscuro */
body.dark-mode .comment-body.premium-comment-body,
body.dark-mode .comment-preview-body.premium-comment-body {
    font-weight: 600;
}
/* =========================================================
   THEBRANCHY - FIX HOVER POPULARES EN MODO OSCURO
   IMPORTANTE:
   No reemplaces todo tu style.css con este archivo.
   Copia este bloque y pégalo AL FINAL de /css/style.css
   ========================================================= */

/* Sidebar derecho: Populares / De quienes sigues */
body.dark-mode .side-col .news-item.mini-preview:hover,
body.dark-mode .side-col a.news-item.mini-preview:hover {
    background: rgba(103, 163, 129, 0.20) !important; /* verdecito suave Branchy */
    color: #eaf7ee !important;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: inset 0 0 0 1px rgba(103, 163, 129, 0.28);
}

/* Título dentro del hover */
body.dark-mode .side-col .news-item.mini-preview:hover .news-title,
body.dark-mode .side-col a.news-item.mini-preview:hover .news-title {
    color: #ffffff !important;
}

/* Metadata: puntos, comentarios, usuario */
body.dark-mode .side-col .news-item.mini-preview:hover .post-meta,
body.dark-mode .side-col a.news-item.mini-preview:hover .post-meta {
    color: #cfe8d6 !important;
}

/* Descripción del post */
body.dark-mode .side-col .news-item.mini-preview:hover .news-desc,
body.dark-mode .side-col a.news-item.mini-preview:hover .news-desc {
    color: #dcefe2 !important;
}

/* Miniatura placeholder en hover */
body.dark-mode .side-col .news-item.mini-preview:hover .news-thumb-placeholder,
body.dark-mode .side-col a.news-item.mini-preview:hover .news-thumb-placeholder {
    background: rgba(103, 163, 129, 0.28) !important;
    color: #ffffff !important;
}

