/* ==========================================================================
   WhatsApp Web Orijinal CSS Tasarimi (Aydinlik & Karanlik Tema)
   wpbeta.yoncu.com.tr
   ========================================================================== */

/* 1. AYDINLIK TEMA DEGISKENLERI (Default Light) */
:root, body.light-theme {
    --wa-app-bg: #eae6df;
    --wa-bg-dark: #f0f2f5;
    --wa-nav-rail-bg: #eae6df;
    --wa-nav-btn-hover: #d9dbde;
    --wa-nav-btn-active: #d1d7db;
    --wa-sidebar-bg: #ffffff;
    --wa-panel-header-bg: #f0f2f5;
    --wa-panel-border: #e9edef;
    --wa-chat-bg: #efeae2;
    --wa-input-bg: #ffffff;
    --wa-input-bar-bg: #f0f2f5;
    --wa-text-primary: #111b21;
    --wa-text-secondary: #667781;
    --wa-green: #00a884;
    --wa-green-light: #25d366;
    --wa-bubble-in: #ffffff;
    --wa-bubble-out: #d9fdd3;
    --wa-badge-bg: #25d366;
    --wa-badge-text: #ffffff;
    --wa-scrollbar: #cccccc;
    --wa-chat-hover: #f5f6f6;
    --wa-chat-active: #eae6df;
    --wa-pill-bg: #f0f2f5;
    --wa-pill-active-bg: #e7fce3;
    --wa-pill-active-text: #008069;
    --wa-modal-bg: #ffffff;
    --wa-ack-read: #53bdeb;
}

/* 2. KARANLIK TEMA DEGISKENLERI (Dark Theme) */
body.dark-theme {
    --wa-app-bg: #0c1317;
    --wa-bg-dark: #111b21;
    --wa-nav-rail-bg: #202c33;
    --wa-nav-btn-hover: #374248;
    --wa-nav-btn-active: #374248;
    --wa-sidebar-bg: #111b21;
    --wa-panel-header-bg: #202c33;
    --wa-panel-border: #222d34;
    --wa-chat-bg: #0b141a;
    --wa-input-bg: #2a3942;
    --wa-input-bar-bg: #202c33;
    --wa-text-primary: #e9edef;
    --wa-text-secondary: #8696a0;
    --wa-green: #00a884;
    --wa-green-light: #00a884;
    --wa-bubble-in: #202c33;
    --wa-bubble-out: #005c4b;
    --wa-badge-bg: #00a884;
    --wa-badge-text: #111b21;
    --wa-scrollbar: #374248;
    --wa-chat-hover: #202c33;
    --wa-chat-active: #2a3942;
    --wa-pill-bg: #202c33;
    --wa-pill-active-bg: #0a332c;
    --wa-pill-active-text: #00a884;
    --wa-modal-bg: #222e35;
    --wa-ack-read: #53bdeb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--wa-app-bg);
    overflow: hidden;
}

#wa-app-root {
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: hidden;
    position: relative;
}

/* ==========================================================================
   2026 ORIJINAL WHATSAPP WEB QR GIRIS EKRANI (Birebir Tasarim)
   ========================================================================== */
.wa-qr-screen {
    width: 100vw;
    height: 100vh;
    background-color: #fcf5eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
    z-index: 100;
    overflow-y: auto;
}

.wa-qr-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    top: 40px;
    left: 48px;
    color: #25D366;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.wa-qr-card-2026 {
    background: #ffffff;
    border: 1px solid #e1e3e6;
    border-radius: 24px;
    padding: 56px 64px 44px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
    max-width: 980px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-top: 10px;
    margin-bottom: 28px;
}

.wa-qr-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wa-qr-title {
    font-size: 32px;
    font-weight: 400;
    color: #111b21;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.wa-qr-steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.wa-steps-vertical-line {
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background-color: #e9edef;
    z-index: 1;
}

.wa-step-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 2;
}

.wa-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #d1d7db;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #54656f;
    font-weight: 500;
    flex-shrink: 0;
}

.wa-step-text {
    font-size: 16px;
    color: #3b4a54;
    line-height: 26px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.wa-inline-wa-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.wa-help-link {
    color: #008069;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 32px;
    display: inline-block;
    cursor: pointer;
}

.wa-help-link:hover {
    color: #00a884;
}

.wa-qr-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid #e9edef;
}

.wa-remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #111b21;
    cursor: pointer;
    user-select: none;
}

.wa-remember-me input {
    display: none;
}

.wa-custom-checkbox {
    width: 18px;
    height: 18px;
    background-color: #00a884;
    color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.wa-info-icon {
    color: #8696a0;
    font-size: 14px;
    cursor: help;
}

.wa-phone-login-link {
    color: #008069;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.wa-phone-login-link:hover {
    text-decoration: underline;
}

.wa-qr-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.wa-qr-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-qr-bottom-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: #8696a0;
    font-size: 14px;
    text-align: center;
}

.wa-footer-signup {
    color: #111b21;
    font-size: 14.5px;
}

.wa-footer-signup a {
    color: #008069;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.wa-footer-encryption {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #54656f;
    font-size: 13.5px;
}

.wa-footer-terms a {
    color: #8696a0;
    text-decoration: none;
    font-size: 12.5px;
    cursor: pointer;
}

.wa-footer-terms a:hover {
    text-decoration: underline;
}

.wa-qr-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 4px;
    color: #41525d;
    font-size: 14px;
    font-weight: 500;
}

.wa-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 168, 132, 0.2);
    border-top-color: var(--wa-green);
    border-radius: 50%;
    animation: wa-spin 0.8s linear infinite;
}

@keyframes wa-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   ANA CHAT EKRANI (TAM EKRAN FLEX LAYOUT)
   ========================================================================== */
.wa-main-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

/* 2.1 EN SOL DIKEY NAV RAIL */
.wa-nav-rail {
    width: 60px;
    height: 100vh;
    background-color: var(--wa-nav-rail-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-right: 1px solid var(--wa-panel-border);
    flex-shrink: 0;
    z-index: 10;
}

.wa-nav-top, .wa-nav-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wa-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--wa-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.wa-nav-btn:hover {
    background-color: var(--wa-nav-btn-hover);
    color: var(--wa-text-primary);
}

.wa-nav-btn.active {
    background-color: var(--wa-nav-btn-active);
    color: var(--wa-text-primary);
}

.wa-nav-ai {
    color: #7f66ff;
}

.wa-nav-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #374248;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    margin-top: 4px;
}

.wa-nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2.2 SOHBETLER SOL PANEL (SIDEBAR) */
.wa-sidebar {
    width: 400px;
    height: 100vh;
    background-color: var(--wa-sidebar-bg);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--wa-panel-border);
    flex-shrink: 0;
}

.wa-sidebar-header {
    height: 60px;
    background-color: var(--wa-sidebar-bg);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-header-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--wa-green);
    letter-spacing: -0.3px;
}

.wa-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-btn-icon {
    background: transparent;
    border: none;
    color: var(--wa-text-secondary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.wa-btn-icon:hover {
    background-color: var(--wa-nav-btn-hover);
    color: var(--wa-text-primary);
}

/* ARAMA KUTUSU */
.wa-search-box {
    padding: 0 12px 10px 12px;
}

.wa-search-input-wrapper {
    background-color: var(--wa-input-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 7px 12px;
    gap: 12px;
    border: 1px solid transparent;
}

.wa-search-input-wrapper:focus-within {
    border-color: var(--wa-green);
}

.wa-search-input-wrapper svg {
    color: var(--wa-text-secondary);
    flex-shrink: 0;
}

.wa-search-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--wa-text-primary);
    font-size: 14px;
    width: 100%;
}

.wa-search-input-wrapper input::placeholder {
    color: var(--wa-text-secondary);
}

/* FILTRE HAPLARI */
.wa-filter-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px 10px 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.wa-filter-pills::-webkit-scrollbar {
    display: none;
}

.wa-pill {
    background-color: var(--wa-pill-bg);
    color: var(--wa-text-secondary);
    border: none;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.wa-pill:hover {
    color: var(--wa-text-primary);
}

.wa-pill.active {
    background-color: var(--wa-pill-active-bg);
    color: var(--wa-pill-active-text);
    font-weight: 600;
}

/* SOHBET LISTESI */
.wa-chat-list {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--wa-scrollbar) transparent;
}

.wa-chat-item {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 72px;
    cursor: pointer;
    transition: background-color 0.15s;
    user-select: none;
}

.wa-chat-item:hover {
    background-color: var(--wa-chat-hover);
}

.wa-chat-item.active {
    background-color: var(--wa-chat-active);
}

.wa-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #6b7780;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-chat-details {
    flex: 1;
    margin-left: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-bottom: 1px solid var(--wa-panel-border);
    min-width: 0;
}

.wa-chat-item:last-child .wa-chat-details {
    border-bottom: none;
}

.wa-chat-top-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3px;
}

.wa-chat-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--wa-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-chat-time {
    font-size: 12px;
    color: var(--wa-text-secondary);
    flex-shrink: 0;
    margin-left: 6px;
}

.wa-chat-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-chat-preview {
    font-size: 14px;
    color: var(--wa-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-badge {
    background-color: var(--wa-badge-bg);
    color: var(--wa-badge-text);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    margin-left: 8px;
    flex-shrink: 0;
}

/* ==========================================================================
   2.3 SAG PANEL (AKTIF SOHBET ALANI)
   ========================================================================== */
.wa-chat-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--wa-chat-bg);
    position: relative;
    height: 100vh;
}

/* SOHBET BOS EKRAN */
.wa-empty-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--wa-sidebar-bg);
    border-bottom: 6px solid var(--wa-green);
    text-align: center;
    padding: 30px;
}

.wa-empty-illustration {
    margin-bottom: 25px;
    color: var(--wa-text-secondary);
}

.wa-empty-chat h2 {
    font-size: 32px;
    font-weight: 300;
    color: var(--wa-text-primary);
    margin-bottom: 12px;
}

.wa-empty-chat p {
    font-size: 14px;
    color: var(--wa-text-secondary);
    max-width: 480px;
    line-height: 20px;
}

/* AKTIF SOHBET BASLIGI */
.wa-chat-header {
    height: 60px;
    background-color: var(--wa-panel-header-bg);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--wa-panel-border);
    z-index: 5;
}

.wa-active-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wa-active-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--wa-text-primary);
}

.wa-active-info span {
    font-size: 13px;
    color: var(--wa-text-secondary);
}

/* MESAJ AKISI */
.wa-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--wa-chat-bg);
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--wa-scrollbar) transparent;
}

.wa-msg {
    max-width: 65%;
    padding: 6px 9px 8px 9px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 14.2px;
    line-height: 19px;
    word-break: break-word;
    box-shadow: 0 1px 0.5px rgba(11,20,26,0.13);
}

.wa-msg-in {
    align-self: flex-start;
    background-color: var(--wa-bubble-in);
    color: var(--wa-text-primary);
    border-top-left-radius: 0;
}

.wa-msg-out {
    align-self: flex-end;
    background-color: var(--wa-bubble-out);
    color: var(--wa-text-primary);
    border-top-right-radius: 0;
}

.wa-msg-meta {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    margin-left: 12px;
    font-size: 11px;
    color: var(--wa-text-secondary);
}

.wa-msg-meta svg {
    width: 14px;
    height: 14px;
}

.wa-msg-meta .wa-ack-read {
    color: var(--wa-ack-read);
}

/* MESAJ YAZMA CUBUGU */
.wa-input-bar {
    min-height: 62px;
    background-color: var(--wa-input-bar-bg);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--wa-panel-border);
}

.wa-input-field-wrapper {
    flex: 1;
    background-color: var(--wa-input-bg);
    border-radius: 8px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
}

.wa-input-field-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--wa-text-primary);
    font-size: 15px;
}

/* MODALLAR */
.wa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.wa-modal {
    background: var(--wa-modal-bg);
    border: 1px solid var(--wa-panel-border);
    border-radius: 12px;
    width: 600px;
    max-width: 90vw;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    color: var(--wa-text-primary);
}

.wa-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wa-modal-header h3 {
    font-size: 18px;
    color: var(--wa-text-primary);
}

.wa-code-block {
    background: var(--wa-input-bg);
    border: 1px solid var(--wa-panel-border);
    border-radius: 6px;
    padding: 12px;
    font-family: monospace;
    font-size: 13px;
    color: var(--wa-green);
    overflow-x: auto;
    margin: 12px 0;
    user-select: all;
}

/* ==========================================================================
   ORIJINAL AYARLAR & PROFIL SOL PANELI STILLERI (web.whatsapp.com Birebir)
   ========================================================================== */
.wa-settings-sidebar, .wa-profile-edit-sidebar {
    background-color: var(--wa-sidebar-bg);
    animation: wa-slide-in 0.2s ease-out;
}

@keyframes wa-slide-in {
    from { transform: translateX(-30px); opacity: 0.8; }
    to { transform: translateX(0); opacity: 1; }
}

.wa-settings-header-title {
    font-size: 19px;
    font-weight: 500;
    color: var(--wa-text-primary);
}

.wa-settings-scroll-content {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--wa-scrollbar) transparent;
}

/* Bildirim Oneri Banneri */
.wa-settings-banner {
    background-color: var(--wa-input-bg);
    border: 1px solid var(--wa-panel-border);
    border-radius: 12px;
    margin: 0 16px 20px 16px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}

.wa-banner-icon {
    color: var(--wa-text-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.wa-banner-text h4 {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--wa-text-primary);
    margin-bottom: 3px;
}

.wa-banner-text p {
    font-size: 12.5px;
    color: var(--wa-text-secondary);
    line-height: 17px;
}

.wa-banner-text a {
    color: var(--wa-green);
    font-weight: 600;
    text-decoration: none;
}

.wa-banner-text a:hover {
    text-decoration: underline;
}

.wa-banner-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--wa-text-secondary);
    cursor: pointer;
}

/* Buyuk Profil Resmi ve "yaziyor..." Balonu */
.wa-profile-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0 25px 0;
    position: relative;
}

.wa-typing-bubble {
    background-color: var(--wa-input-bg);
    color: var(--wa-text-primary);
    border: 1px solid var(--wa-panel-border);
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    position: relative;
}

.wa-typing-bubble::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--wa-input-bg);
    border-radius: 50%;
    border: 1px solid var(--wa-panel-border);
}

.wa-profile-big-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #6b7780;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 600;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.wa-profile-big-avatar:hover {
    transform: scale(1.03);
}

.wa-profile-big-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ayarlar Menü Listesi */
.wa-settings-menu-list {
    display: flex;
    flex-direction: column;
}

.wa-settings-menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background-color 0.15s;
    user-select: none;
}

.wa-settings-menu-item:hover {
    background-color: var(--wa-chat-hover);
}

.wa-menu-icon {
    color: var(--wa-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wa-menu-content h3 {
    font-size: 15.5px;
    font-weight: 400;
    color: var(--wa-text-primary);
    margin-bottom: 2px;
}

.wa-menu-content p {
    font-size: 12.5px;
    color: var(--wa-text-secondary);
}

/* Profil Duzenleme Formu */
.wa-profile-field-group {
    background: var(--wa-input-bg);
    border: 1px solid var(--wa-panel-border);
    border-radius: 8px;
    padding: 12px 16px;
}

.wa-profile-field-group label {
    font-size: 12px;
    color: var(--wa-green);
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.wa-profile-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   ORIJINAL WHATSAPP BUTON STILLERI
   ========================================================================== */
button {
    font-family: inherit;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

.wa-btn-primary, button.wa-btn-primary {
    background-color: var(--wa-green) !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 24px !important;
    font-size: 14px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: background-color 0.2s ease, transform 0.1s ease !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    user-select: none !important;
}

.wa-btn-primary:hover {
    background-color: #02906f !important;
    color: #ffffff !important;
}

.wa-btn-primary:active {
    transform: scale(0.98);
}

.wa-btn-secondary, button.wa-btn-secondary {
    background-color: transparent !important;
    color: var(--wa-green) !important;
    border: 1px solid var(--wa-green) !important;
    padding: 9px 22px !important;
    border-radius: 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.2s ease !important;
    user-select: none !important;
}

.wa-btn-secondary:hover {
    background-color: rgba(0, 168, 132, 0.08) !important;
}

.wa-btn-danger, button.wa-btn-danger {
    background-color: #ea0038 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: opacity 0.2s !important;
}

.wa-btn-danger:hover {
    opacity: 0.9 !important;
}

.wa-modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--wa-panel-border);
}

/* AYARLAR & SWITCH STILLERI */
.wa-settings-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--wa-panel-border);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.wa-setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--wa-panel-border);
}

.wa-setting-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wa-setting-item:first-child {
    padding-top: 0;
}

.wa-setting-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--wa-text-primary);
    margin-bottom: 3px;
}

.wa-setting-desc {
    font-size: 12px;
    color: var(--wa-text-secondary);
    line-height: 16px;
}

/* iOS Tarzi Modern Switch */
.wa-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.wa-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wa-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #374248;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
}

.wa-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

input:checked + .wa-slider {
    background-color: var(--wa-green);
}

input:checked + .wa-slider:before {
    transform: translateX(20px);
}
