@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap";:root{--bg-primary:#efefef;--bg-secondary:#fff;--bg-card:#f9f9f9;--text-primary:#1f1b1b;--text-secondary:rgba(31,27,27,.5);--text-muted:rgba(31,27,27,.7);--accent:#f4a261;--accent-hover:#e8955a;--accent-bg:rgba(244,162,97,.5);--accent-bg-light:rgba(244,162,97,.15);--input-bg:#fff;--input-bg-focus:#efefef;--input-border:#b9b8b8;--input-focus:#f4a261;--border:#d5d5d5;--success:#4caf50;--success-bg:#e8f5e9;--error:#f44336;--error-bg:#ffebee;--border-radius:10px;--shadow:2px 2px 8px 0px rgba(0,0,0,.25);--shadow-light:2px 2px 2px 0px rgba(0,0,0,.15)}*{box-sizing:border-box;margin:0;padding:0}body{background:var(--bg-primary);color:var(--text-primary);min-height:100vh;font-family:Montserrat,sans-serif}.login-container{justify-content:center;align-items:center;min-height:100vh;display:flex}.login-card{background:var(--bg-secondary);border-radius:var(--border-radius);width:100%;max-width:400px;box-shadow:var(--shadow);padding:40px}.login-card h1{text-align:center;color:var(--text-primary);margin-bottom:8px;font-size:24px;font-weight:700}.login-card .subtitle{text-align:center;color:var(--text-secondary);margin-bottom:32px;font-size:14px}.form-group{margin-bottom:20px}.form-group label{color:var(--text-muted);margin-bottom:6px;font-size:14px;font-weight:500;display:block}.form-group input{background:var(--input-bg);border:1px solid var(--input-border);border-radius:var(--border-radius);width:100%;color:var(--text-primary);outline:none;padding:12px 16px;font-family:Montserrat,sans-serif;font-size:16px;transition:all .15s}.form-group input:focus{background:var(--input-bg-focus);border-color:var(--input-focus)}.form-group input::-webkit-input-placeholder{color:var(--text-secondary)}.form-group input::-ms-input-placeholder{color:var(--text-secondary)}.form-group input::placeholder{color:var(--text-secondary)}.btn{border-radius:var(--border-radius);cursor:pointer;box-shadow:var(--shadow-light);border:none;padding:12px 24px;font-family:Montserrat,sans-serif;font-size:16px;font-weight:600;transition:all .15s;display:inline-block}.btn-primary{background:var(--accent-bg);width:100%;color:var(--text-primary)}.btn-primary:hover{box-shadow:var(--shadow);background:rgba(244,162,97,.7)}.btn-primary:active{box-shadow:inset 2px 2px 4px rgba(0,0,0,.2)}.btn-primary:disabled{opacity:.6;cursor:not-allowed}.error-message{color:var(--error);text-align:center;min-height:20px;margin-top:16px;font-size:14px}.admin-layout{min-height:100vh;display:flex}.sidebar{background:var(--bg-secondary);border-right:1px solid var(--border);width:240px;box-shadow:var(--shadow-light);flex-direction:column;display:flex}.sidebar-header{border-bottom:1px solid var(--border);padding:24px 20px}.sidebar-header h2{color:var(--text-primary);font-size:18px;font-weight:700}.nav-menu{flex:1;padding:12px 0;list-style:none}.nav-item a{color:var(--text-muted);padding:12px 20px;font-size:15px;font-weight:500;text-decoration:none;transition:all .15s;display:block}.nav-item a:hover{background:var(--bg-card);color:var(--text-primary)}.nav-item.active a{color:var(--accent-hover);background:var(--accent-bg-light);border-left:3px solid var(--accent);font-weight:600}.sidebar-footer{border-top:1px solid var(--border);padding:16px 20px}.btn-logout{border:1px solid var(--input-border);color:var(--text-muted);border-radius:var(--border-radius);cursor:pointer;background:0 0;width:100%;padding:8px 16px;font-family:Montserrat,sans-serif;font-size:14px;font-weight:500;transition:all .15s}.btn-logout:hover{border-color:var(--accent);color:var(--accent-hover);background:var(--accent-bg-light)}.content{flex:1;height:100vh;padding:32px;overflow-y:auto}.content h1{margin-bottom:8px;font-size:24px;font-weight:700}.text-secondary{color:var(--text-secondary);margin-bottom:24px}.cards-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px;margin-top:24px;display:grid}.card{background:var(--bg-secondary);border-radius:var(--border-radius);box-shadow:var(--shadow-light);padding:24px;transition:box-shadow .3s}.card:hover{box-shadow:var(--shadow)}.card-title{color:var(--text-secondary);margin-bottom:8px;font-size:14px;font-weight:500}.card-value{color:var(--text-primary);font-size:32px;font-weight:700}.dashboard-recent{margin-top:32px}.dashboard-recent h2{margin-bottom:16px;font-size:18px;font-weight:600}.sub-badge{cursor:pointer;border-radius:12px;padding:4px 12px;font-size:12px;font-weight:600;transition:opacity .15s;display:inline-block}.sub-badge:hover{opacity:.8}.sub-free{color:#666;background:#e0e0e0}.sub-paid{background:var(--success-bg);color:#2e7d32}.sub-trial{background:var(--accent-bg-light);color:#e8955a}.sub-dropdown{background:var(--bg-secondary);border:1px solid var(--border);border-radius:var(--border-radius);box-shadow:var(--shadow);z-index:1000;min-width:100px;overflow:hidden}.sub-dropdown__item{cursor:pointer;padding:8px 16px;font-size:13px;transition:background .15s}.sub-dropdown__item:hover{background:var(--accent-bg-light)}.sub-dropdown__item.active{background:var(--accent-bg);font-weight:600}.search-input{border:1px solid var(--input-border);border-radius:var(--border-radius);background:var(--input-bg);color:var(--text-primary);outline:none;min-width:260px;padding:8px 14px;font-family:Montserrat,sans-serif;font-size:14px;transition:all .15s}.search-input:focus{background:var(--input-bg-focus);border-color:var(--input-focus)}.search-input::-webkit-input-placeholder{color:var(--text-secondary)}.search-input::-ms-input-placeholder{color:var(--text-secondary)}.search-input::placeholder{color:var(--text-secondary)}.filters{gap:16px;margin:20px 0;display:flex}.filter-group{align-items:center;gap:8px;display:flex}.filter-group label{color:var(--text-secondary);font-size:14px;font-weight:500}.custom-select{min-width:140px;position:relative}.custom-select__trigger{border:1px solid var(--input-border);border-radius:var(--border-radius);background:var(--bg-secondary);cursor:pointer;color:var(--text-primary);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;justify-content:space-between;align-items:center;padding:8px 12px;font-family:Montserrat,sans-serif;font-size:14px;font-weight:400;transition:all .15s;display:flex}.custom-select.open .custom-select__trigger{border-color:var(--input-focus);background:var(--input-bg-focus);box-shadow:inset 2px 2px 2px rgba(0,0,0,.08)}.custom-select__value{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.custom-select__arrow{color:var(--accent);margin-left:10px;font-size:8px;transition:transform .2s}.custom-select.open .custom-select__arrow{transform:rotate(180deg)}.custom-select__dropdown{background:var(--bg-secondary);border-radius:var(--border-radius);z-index:100;opacity:0;visibility:hidden;pointer-events:none;width:100%;max-height:200px;transition:opacity .2s,visibility .2s;position:absolute;top:calc(100% + 4px);left:0;overflow-y:auto;box-shadow:0 4px 12px rgba(0,0,0,.15)}.custom-select.open .custom-select__dropdown{opacity:1;visibility:visible;pointer-events:auto}.custom-select__dropdown::-webkit-scrollbar{width:6px}.custom-select__dropdown::-webkit-scrollbar-track{background:0 0}.custom-select__dropdown::-webkit-scrollbar-thumb{background:#c3c3c3;border-radius:3px}.custom-select__list{margin:0;padding:6px;list-style:none}.custom-select__item{height:32px;color:var(--text-primary);border-radius:var(--border-radius);cursor:pointer;padding:0 10px;font-family:Montserrat,sans-serif;font-size:14px;line-height:32px;transition:all .1s}.custom-select__item:hover{box-shadow:inset 2px 2px 4px rgba(0,0,0,.08)}.custom-select__item:active{background:var(--accent-bg-light);transition:background 50ms}.custom-select__item.selected{background:var(--accent-bg);font-weight:600;box-shadow:inset 2px 2px 2px rgba(0,0,0,.08)}.messages-count{color:var(--text-secondary);margin-bottom:12px;font-size:14px}.messages-table{border-collapse:collapse;background:var(--bg-secondary);border-radius:var(--border-radius);width:100%;box-shadow:var(--shadow-light);font-size:14px;overflow:hidden}.messages-table th{text-align:left;background:var(--bg-card);color:var(--text-muted);border-bottom:1px solid var(--border);padding:12px 14px;font-size:13px;font-weight:600}.messages-table td{border-bottom:1px solid rgba(0,0,0,.06);padding:10px 14px}.msg-row{cursor:pointer;transition:background .15s}.msg-row:hover{background:var(--bg-card)}.msg-row-new{font-weight:600}.source-badge{border-radius:var(--border-radius);text-transform:uppercase;letter-spacing:.3px;padding:2px 8px;font-size:11px;font-weight:600;display:inline-block}.source-platform{background:var(--success-bg);color:#388e3c}.source-cloud{color:#1976d2;background:#e3f2fd}.page-badge{border-radius:var(--border-radius);color:var(--text-muted);text-overflow:ellipsis;white-space:nowrap;vertical-align:middle;background:rgba(0,0,0,.06);max-width:200px;padding:2px 8px;font-size:11px;font-weight:500;display:inline-block;overflow:hidden}.status-badge{border-radius:var(--border-radius);padding:2px 8px;font-size:12px;font-weight:500;display:inline-block}.status-new{background:var(--accent-bg-light);color:var(--accent-hover)}.status-read{color:var(--text-secondary);background:rgba(0,0,0,.06)}.status-replied{background:var(--success-bg);color:#388e3c}.msg-count-badge{background:var(--accent-bg-light);color:var(--accent-hover);text-align:center;border-radius:12px;min-width:24px;padding:2px 8px;font-size:12px;font-weight:600;display:inline-block}.msg-count-single{color:var(--text-secondary);font-size:12px}.modal{z-index:1000;justify-content:center;align-items:center;width:100%;height:100%;display:flex;position:fixed;top:0;left:0}.modal-overlay{background:rgba(0,0,0,.4);width:100%;height:100%;position:absolute;top:0;left:0}.modal-content{background:var(--bg-secondary);border-radius:var(--border-radius);width:1200px;max-width:90vw;height:100vh;box-shadow:var(--shadow);position:relative;overflow-y:auto}.modal-header{border-bottom:1px solid var(--border);background:var(--bg-card);justify-content:space-between;align-items:center;padding:20px 24px;display:flex}.modal-header h2{font-size:18px;font-weight:600}.modal-header-actions{align-items:center;gap:12px;display:flex}.modal-close{color:var(--text-secondary);cursor:pointer;background:0 0;border:none;font-size:24px;transition:color .15s}.modal-close:hover{color:var(--text-primary)}.btn-delete{border:1px solid var(--error);border-radius:var(--border-radius);color:var(--error);cursor:pointer;background:0 0;padding:6px 14px;font-family:Montserrat,sans-serif;font-size:13px;font-weight:500;transition:all .15s}.btn-delete:hover{background:var(--error);color:#fff}.btn-delete-row{color:var(--text-secondary);cursor:pointer;border-radius:var(--border-radius);background:0 0;border:none;padding:2px 6px;font-size:18px;line-height:1;transition:all .15s}.btn-delete-row:hover{color:var(--error);background:var(--error-bg)}.modal-body{padding:24px}.msg-meta{align-items:center;gap:12px;margin-bottom:16px;display:flex}.msg-date{color:var(--text-secondary);font-size:13px}.msg-info{margin-bottom:16px;font-size:14px}.msg-info p{margin-bottom:4px}.msg-text{background:var(--bg-card);border-radius:var(--border-radius);white-space:pre-wrap;margin-bottom:20px;padding:16px;font-size:15px;line-height:1.6}.thread-message{border-bottom:1px solid rgba(0,0,0,.08);margin-bottom:16px;padding-bottom:16px}.thread-message:last-child{border-bottom:none}.thread-message-header{align-items:center;gap:8px;margin-bottom:8px;display:flex}.thread-message-body{background:var(--bg-card);border-radius:var(--border-radius);white-space:pre-wrap;margin-bottom:8px;padding:12px 16px;font-size:15px;line-height:1.6}#reply-section h3{margin-bottom:12px;font-size:16px;font-weight:600}.reply-item{background:var(--accent-bg-light);border-radius:var(--border-radius);border-left:3px solid var(--accent);margin-bottom:8px;padding:12px 16px}.reply-meta{color:var(--text-secondary);margin-bottom:6px;font-size:12px}.reply-text{white-space:pre-wrap;font-size:14px}#reply-section{border-top:1px solid var(--border);margin-top:20px;padding-top:20px}#reply-text{background:var(--input-bg);border:1px solid var(--input-border);border-radius:var(--border-radius);width:100%;min-height:100px;color:var(--text-primary);resize:vertical;outline:none;margin-bottom:12px;padding:12px;font-family:Montserrat,sans-serif;font-size:14px;transition:all .15s}#reply-text:focus{background:var(--input-bg-focus);border-color:var(--input-focus)}.planc-status{min-height:18px;margin-top:8px;font-size:13px}.planc-status.success{color:var(--success)}.planc-status.error{color:var(--error)}.analytics-section{background:var(--bg-secondary);border-radius:var(--border-radius);box-shadow:var(--shadow-light);margin-top:32px;padding:24px}.analytics-section h2{color:var(--text-primary);margin-bottom:16px;font-size:16px;font-weight:600}.analytics-section canvas{width:100%;display:block}
/*# sourceMappingURL=index.css.map*/