/* =========================================================
   KREAVERSE AI - CHATGPT MINIMALIST THEME (WHITE/GRAY)
   ========================================================= */

:root {
    --bg-color: #FFFFFF;
    --surface-color: #FFFFFF;
    --sidebar-bg: #F9F9F9;
    --text-primary: #0D0D0D;
    --text-secondary: #676767;
    --border-color: #E3E3E3;
    --accent-color: #0D0D0D; 
    --hover-bg: #F4F4F4;
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.03);
    --shadow-popup: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* MENGIKUTI ATURAN TAP DAN HIGHLIGHT OPERASI SELULER */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent !important;
}

a { text-decoration: none; color: inherit; }

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    background-color: var(--bg-color); 
    color: var(--text-primary); 
    overflow-x: hidden; 
    height: 100vh;
    height: 100dvh;
}

/* --- CHAT TOP NAVBAR --- */
.chat-navbar-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 999;
}

.menu-hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 80px; 
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 20px;
}

.hamburger-lines span {
    height: 1.8px;
    background-color: var(--text-primary);
    border-radius: 2px;
}

.hamburger-lines span:first-child { width: 100%; }
.hamburger-lines span:last-child { width: 60%; }

.navbar-center-model {
    flex: 1; 
    display: flex;
    justify-content: center;
    position: relative;
}

.model-badge {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.model-badge:hover {
    background-color: var(--hover-bg);
    color: var(--text-primary);
}

.dropdown-arrow-icon {
    font-size: 0.7rem;
    opacity: 0.7;
}

.model-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 310px;
    max-width: 90vw;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-popup);
    padding: 8px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.model-dropdown.hidden { display: none; }

.model-opt-row {
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.model-opt-row:hover { 
    background-color: var(--hover-bg); 
}

.model-opt-row .model-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-logo-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.model-opt-row .model-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.badge-premium {
    background-color: #EBF5FF;
    color: #007AFF;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    line-height: 1.2;
}

@keyframes pulseNewBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4); }
    1% { transform: scale(1.05); box-shadow: 0 0 8px 2px rgba(52, 199, 89, 0.4); }
    2% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
    3% { transform: scale(1.05); box-shadow: 0 0 8px 2px rgba(52, 199, 89, 0.4); }
    4% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
    5% { transform: scale(1.05); box-shadow: 0 0 8px 2px rgba(52, 199, 89, 0.4); }
    6% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
    7% { transform: scale(1.05); box-shadow: 0 0 8px 2px rgba(52, 199, 89, 0.4); }
    8.33% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

.badge-new {
    background-color: #EAFDF0;
    color: #34C759;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    line-height: 1.2;
    animation: pulseNewBadge 120s infinite ease-in-out;
    will-change: transform;
}

.model-opt-row .model-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
}

.navbar-right {
    width: 80px; 
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-auth-btn-pill {
    background-color: #0D0D0D;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    transition: background 0.2s;
}

.top-auth-btn-pill:hover {
    background-color: #2D2D2D;
}

.top-profile-circle {
    width: 32px;
    height: 32px;
    background-color: #E3E3E3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    overflow: hidden;
}

.avatar-rendered-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* --- LAYOUT UTAMA --- */
.claude-layout { display: flex; height: 100vh; overflow: hidden; }

/* --- SIDEBAR MENU --- */
.claude-sidebar {
    width: 280px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -280px;
    transition: var(--transition-smooth);
    z-index: 10000;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.claude-sidebar.open {
    transform: translate3d(280px, 0, 0); 
}

.sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
}

.sidebar-brand-logo-img {
    width: 155px;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.brand-shimmer-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
}

.sidebar-brand-logo-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    animation: sweepShimmer 60s infinite ease-in-out;
}

@keyframes sweepShimmer {
    0% { left: -150%; }
    1.5% { left: 150%; }
    3.0% { left: -150%; }
    4.5% { left: 150%; }
    6.0% { left: -150%; }
    7.5% { left: 150%; }
    9.0% { left: -150%; }
    10.5% { left: 150%; }
    12.0% { left: -150%; }
    100% { left: -150%; } 
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 0 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.menu-item:hover {
    background-color: var(--hover-bg);
}

.sidebar-feature-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 6px;
    margin-left: auto;
    line-height: 1.2;
}

.sidebar-feature-badge.locked {
    background-color: #EBF5FF;
    color: #007AFF;
}

.sidebar-feature-badge.unlocked {
    background-color: #EAFDF0;
    color: #34C759;
}

.badge-free {
    background-color: #E3E3E3;
    color: var(--text-secondary);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.badge-cheap {
    background-color: #FEE2E2;
    color: #EF4444;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.admin-style-link { color: #8A2BE2 !important; }

/* --- SIDEBAR FOOTER & USER PROFILE --- */
.sidebar-footer {
    padding: 12px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.guest-promo-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-soft);
}

.guest-promo-card h4 {
    font-size: 0.81rem; 
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.35;
    color: var(--text-primary);
}

.guest-promo-card p {
    font-size: 0.71rem; 
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.guest-login-btn-sidebar {
    display: block;
    text-align: center;
    background: #000000; 
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px;
    border-radius: 20px;
    transition: background 0.2s;
}

body.dark-theme .guest-login-btn-sidebar {
    background: #ECECEC;
    color: #171717;
}

.guest-login-btn-sidebar:hover {
    opacity: 0.9;
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    pointer-events: auto !important;
}

.user-profile:hover { background-color: var(--hover-bg); }

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E3E3E3;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    overflow: hidden;
    flex-shrink: 0;
}

.user-info { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.user-name { font-size: 0.9rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-plan { font-size: 0.75rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.dots-btn-sidebar {
    padding: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    pointer-events: none !important; 
    margin-left: auto;
}

/* --- SETTINGS POPUP & NESTED MENUS --- */
.user-popup {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 12px;
    width: 220px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-popup);
    padding: 6px;
    z-index: 10001;
    display: none;
}

.user-popup.active { display: block !important; }

.popup-item {
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.popup-item:hover { background-color: var(--hover-bg); }
.popup-item i { width: 16px; text-align: center; color: var(--text-secondary); }
.style-right { margin-left: auto; font-size: 0.75rem !important; }
.popup-divider { height: 1px; background-color: var(--border-color); margin: 6px 0; }

.nested-menu {
    background-color: var(--surface-color);
    border-radius: 8px;
    padding: 4px;
    margin-top: 5px;
    display: none;
    width: 100%;
    border: 1px solid var(--border-color);
}

.nested-menu.active {
    display: block !important; 
}

.nested-menu .popup-item {
    padding: 8px 12px;
    font-size: 0.8rem;
}

.hidden-menu {
    display: none !important;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 9999;
}

.sidebar-overlay.active {
    display: block;
}

/* --- KONTEN TENGAH & INPUT CHAT --- */
.claude-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100vh;
    height: 100dvh;
    padding-top: 80px;
}

.greeting-section {
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
    max-width: 650px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.greeting-section h1 {
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

body.keyboard-focused .greeting-section {
    opacity: 0;
    transform: translateY(-20px);
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

body.keyboard-focused .claude-container {
    justify-content: flex-end;
    padding-bottom: 12px;
}

.central-input-box {
    background-color: var(--hover-bg);
    width: 100%;
    max-width: 650px;
    border-radius: 26px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
}

.central-input-box:focus-within {
    background-color: var(--surface-color);
    border-color: var(--border-color);
}

#home-chat-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    resize: none;
    margin-bottom: 12px;
    max-height: 180px;
    line-height: 1.5;
}

#home-chat-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}

.input-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-btn-plus {
    background: #E3E3E3;
    border: none;
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.icon-btn-plus:hover {
    background-color: #CDCDCD;
}

.icon-btn-mic {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.icon-btn-mic:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.send-btn {
    background-color: #0D0D0D;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background-color 0.2s, color 0.2s;
}

.send-btn:hover {
    background-color: #2F2F2F;
}

body.dark-theme .send-btn {
    background-color: #ECECEC;
    color: #171717;
}

body.dark-theme .send-btn:hover {
    background-color: #FFFFFF;
}

.icon-btn-mic.recording {
    color: #EF4444;
    animation: micBlink 1.5s infinite;
}

@keyframes micBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hidden { display: none !important; }

.disclaimer-text {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 18px;
    width: 100%;
    max-width: 500px;
    line-height: 1.4;
    padding: 0 20px;
}

.disclaimer-text a {
    text-decoration: underline;
    font-weight: 500;
}

/* =========================================================
   REVISI NOTIFIKASI IPHONE (LEBIH IMUT & KECIL)
   ========================================================= */
.iphone-toast-container {
    position: fixed;
    top: 10px; 
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
    padding: 8px 16px; /* REVISI: Padding diperkecil */
    border-radius: 30px; /* REVISI: Bentuk lebih bulat/kapsul */
    display: flex;
    align-items: center;
    gap: 10px; /* REVISI: Jarak ikon dan teks diperkecil */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 998; 
    width: max-content;
    max-width: 90vw; 
    pointer-events: none; 
}

.iphone-toast-container.show {
    top: 75px; 
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.iphone-toast-icon {
    font-size: 1.15rem; /* REVISI: Ikon diperkecil */
    flex-shrink: 0;
}

.iphone-toast-content {
    display: flex;
    flex-direction: column;
}

.iphone-toast-title {
    font-size: 0.8rem; /* REVISI: Judul diperkecil */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}

.iphone-toast-desc {
    font-size: 0.7rem; /* REVISI: Deskripsi diperkecil */
    color: #E5E5EA;
    line-height: 1.3;
    white-space: normal; 
    word-wrap: break-word;
}

.file-preview-container {
    display: none;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 8px 12px;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.file-preview-container.active { display: flex; }

.close-file-btn {
    margin-left: auto;
    cursor: pointer;
}

/* --- MODALS STANDARD & DIALOG --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
}

.modal-overlay.active { display: flex; }

.modal-box {
    background-color: var(--surface-color);
    padding: 24px;
    border-radius: 20px;
    width: 90%;
    max-width: 360px;
    box-shadow: var(--shadow-popup);
    text-align: center;
}

.modal-box h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-box p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 16px;
    outline: none;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-actions-vert {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-actions-horizontal {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.modal-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.modal-btn.primary { background-color: var(--text-primary); color: var(--surface-color); }
.modal-btn.cancel { background-color: var(--hover-bg); color: var(--text-secondary); }
.modal-btn.whatsapp { background-color: #25D366; color: white; }
.modal-btn.confirm { background-color: #EF4444; color: white; }

.profile-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.profile-upload-circle {
    width: 80px;
    height: 80px;
    background-color: #E3E3E3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    overflow: hidden;
    position: relative;
    border: 1.5px solid var(--border-color);
}

.profile-upload-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-upload-btn-trigger {
    background-color: var(--hover-bg);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.profile-upload-btn-trigger:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}

.profile-form-inputs {
    text-align: left;
    margin-bottom: 15px;
}

.profile-form-inputs label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 6px;
}

.help-rich-content {
    text-align: left;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 15px;
}

.help-rich-content::-webkit-scrollbar {
    width: 4px;
}
.help-rich-content::-webkit-scrollbar-track {
    background: transparent;
}
.help-rich-content::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.help-rich-content h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.help-rich-content p {
    font-size: 0.8rem !important;
    line-height: 1.4;
    margin-bottom: 0 !important;
}

.help-contact-admin-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #EAFDF0;
    border: 1px solid #C2F0D0;
    padding: 12px;
    border-radius: 12px;
    margin-top: 16px;
}

.whatsapp-icon-help {
    font-size: 1.8rem;
    color: #25D366;
}

.help-contact-admin-box strong {
    font-size: 0.82rem;
    color: #155724;
    display: block;
}

.help-contact-admin-box p {
    font-size: 0.78rem !important;
    color: #155724 !important;
    margin-top: 2px;
}

/* --- DARK MODE OVERRIDES --- */
body.dark-theme {
    --bg-color: #171717;
    --surface-color: #212121;
    --sidebar-bg: #171717;
    --text-primary: #ECECEC;
    --text-secondary: #B4B4B4;
    --border-color: #2F2F2F;
    --hover-bg: #212121;
}

body.dark-theme .menu-hamburger-btn span {
    background-color: var(--text-primary);
}

body.dark-theme .icon-btn-plus {
    background-color: #2F2F2F;
}

body.dark-theme .icon-btn-plus:hover {
    background-color: #3F3F3F;
}

body.dark-theme .send-btn {
    background-color: #ECECEC;
    color: #171717;
}

body.dark-theme .send-btn:hover {
    background-color: #FFFFFF;
}

body.dark-theme .modal-box {
    border: 1px solid var(--border-color);
}

body.dark-theme .profile-upload-circle {
    background-color: #2F2F2F;
}

body.dark-theme .help-contact-admin-box {
    background-color: #162C1D;
    border-color: #1D4229;
}

body.dark-theme .help-contact-admin-box strong,
body.dark-theme .help-contact-admin-box p {
    color: #C2F0D0 !important;
}