:root {
    --bg-dark: #f8f9fa;
    --card-bg-dark: rgba(255, 255, 255, 0.85);
    --border-color: rgba(0, 0, 0, 0.08);
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --accent-purple: #5f27cd;
    --accent-purple-glow: rgba(95, 39, 205, 0.2);
    --accent-green: #10ac84;
    --accent-green-glow: rgba(16, 172, 132, 0.2);
    --accent-blue: #0984e3;
    --accent-orange: #d84315;
    --accent-red: #d63031;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Google Sans Flex', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 700;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* General Layout Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 50%, #00b894 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #4834d4 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00cec9 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-green-glow);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.5);
}

/* ---------------- LANDING PAGE STYLES ---------------- */
.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 184, 148, 0.1) 0%, transparent 40%);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(108, 92, 231, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    transition: all 0.3s ease;
}

.logo-icon svg {
    width: 60%;
    height: 60%;
}

.brand-name {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.coming-soon-card {
    max-width: 650px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    color: #5f27cd;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-card h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.coming-soon-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
}

.email-form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 8px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.email-form-group:focus-within {
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.25);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 16px;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

/* Links block redirection mock */
.links-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.links-grid a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.links-grid a:hover {
    color: var(--accent-purple);
    border-color: var(--accent-purple);
    background: rgba(108, 92, 231, 0.05);
}

/* ---------------- MULTI-STEP MODAL ---------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    max-width: 550px;
    width: 90%;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Steps Indicators */
.steps-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.step-dot {
    width: 32px;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--accent-purple);
    width: 48px;
}

.step-dot.completed {
    background: var(--accent-green);
}

/* Step content visibility */
.modal-step-content {
    display: none;
}

.modal-step-content.active {
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.2);
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background-color: #ffffff;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 12px;
}

.modal-footer .btn {
    flex: 1;
}

/* Autocomplete Dropdown Styles */
.autocomplete-container {
    position: relative;
    width: 100%;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid var(--border-color);
    border-top: none;
    z-index: 1050;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--glass-shadow);
    max-height: 220px;
    overflow-y: auto;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-top: 2px;
}

.autocomplete-items div {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease, color 0.2s ease;
    text-align: left;
}

.autocomplete-items div:last-child {
    border-bottom: none;
}

.autocomplete-items div:hover {
    background-color: rgba(95, 39, 205, 0.1);
    color: var(--accent-purple);
}

.autocomplete-items.hidden {
    display: none;
}

/* Google Maps Pac Autocomplete dropdown customization to match glass style */
.pac-container {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
    box-shadow: var(--glass-shadow) !important;
    font-family: 'Google Sans Flex', sans-serif !important;
    z-index: 1050 !important;
    margin-top: 4px !important;
}

.pac-item {
    border-top: 1px solid var(--border-color) !important;
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
    color: var(--text-primary) !important;
    cursor: pointer !important;
    line-height: 1.5 !important;
}

.pac-item:first-child {
    border-top: none !important;
}

.pac-item:hover {
    background-color: rgba(95, 39, 205, 0.1) !important;
}

.pac-item-query {
    font-size: 0.9rem !important;
    color: var(--text-primary) !important;
}

.pac-matched {
    color: var(--accent-purple) !important;
    font-weight: 600 !important;
}

.pac-icon {
    display: none !important;
}

/* Success State Styles */
.success-state {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 184, 148, 0.1);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-green);
    margin: 0 auto 24px;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ---------------- PRIVATE ADMIN PORTAL ---------------- */
.admin-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.admin-sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    flex-shrink: 0;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 8px;
    margin-bottom: 40px;
}

.sidebar-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.sidebar-logo .brand-name {
    font-size: 1.3rem;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.menu-item button {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 550;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.menu-item button:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.02);
}

.menu-item.active button {
    color: #fff;
    background: var(--accent-purple);
    box-shadow: 0 4px 12px var(--accent-purple-glow);
}

/* Sidebar Footer Theme Switcher */
.sidebar-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.theme-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 8px;
    justify-content: space-between;
}

.theme-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.theme-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

/* Admin Main Content area */
.admin-main {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

/* Header panel */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.admin-header h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
}

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

/* Panels */
.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Dashboard Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.stat-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 2.2rem;
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Dashboard Charts/Visual Blocks */
.dashboard-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.details-card {
    padding: 30px;
    min-height: 350px;
}

.details-card h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

/* Contacts Table panel */
.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.contacts-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.contacts-table th, .contacts-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.contacts-table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacts-table td {
    font-size: 0.95rem;
}

.contacts-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.01);
}

/* Badges styling */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: capitalize;
}

.badge-purple {
    background: rgba(108, 92, 231, 0.1);
    color: #5f27cd;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.badge-green {
    background: rgba(0, 184, 148, 0.1);
    color: #10ac84;
    border: 1px solid rgba(0, 184, 148, 0.2);
}

.badge-blue {
    background: rgba(9, 132, 227, 0.1);
    color: #0984e3;
    border: 1px solid rgba(9, 132, 227, 0.2);
}

.badge-orange {
    background: rgba(225, 112, 85, 0.1);
    color: #d84315;
    border: 1px solid rgba(225, 112, 85, 0.2);
}

.badge-red {
    background: rgba(214, 48, 49, 0.1);
    color: #d63031;
    border: 1px solid rgba(214, 48, 49, 0.2);
}

/* ---------------- CAMPAIGNS PANEL & BUILDER ---------------- */
.campaign-builder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.filter-section {
    padding: 24px;
    margin-bottom: 24px;
}

.audience-counter {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(108, 92, 231, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 8px;
    margin-top: 20px;
}

.audience-counter-icon {
    font-size: 1.5rem;
    color: var(--accent-purple);
}

.audience-counter-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.audience-counter-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.editor-section {
    padding: 30px;
}

.editor-section .form-group textarea {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    min-height: 250px;
}

.preview-section {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.preview-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.1);
}

.preview-header h3 {
    font-size: 1rem;
}

.preview-iframe {
    width: 100%;
    flex: 1;
    border: none;
    background: white;
}

/* ---------------- TOAST NOTIFICATION ---------------- */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 16px 24px;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--accent-purple);
}

.toast.toast-success {
    border-left-color: var(--accent-green);
}

.toast.toast-error {
    border-left-color: var(--accent-red);
}

/* ---------------- LOGS VIEW ---------------- */
.logs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

.log-entry {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.log-meta h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.log-meta p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.log-status {
    text-align: right;
}

.log-status .badge {
    margin-bottom: 4px;
}

.log-status p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive fixes */
@media (max-width: 900px) {
    .dashboard-details-grid {
        grid-template-columns: 1fr;
    }
    .campaign-builder-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------- SUPPORT INBOX & TRIAGE ---------------- */
.tickets-list {
    display: flex;
    flex-direction: column;
}

.ticket-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease, border-left-color 0.2s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.ticket-item:hover {
    background: rgba(0, 0, 0, 0.015);
}

.ticket-item.active {
    background: rgba(95, 39, 205, 0.03);
    border-left-color: var(--accent-purple);
}

.ticket-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-purple-glow);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ticket-item.status-closed .ticket-avatar {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

.ticket-info {
    flex: 1;
    min-width: 0;
}

.ticket-info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.ticket-sender {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ticket-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.ticket-subject {
    font-size: 0.85rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Macros Chips */
.macro-chips-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.macro-chip {
    background: #f1f3f4;
    border: 1px solid #dadce0;
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: #3c4043;
    cursor: pointer;
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 550;
    transition: all 0.15s ease;
    border-style: solid;
}

.macro-chip:hover {
    background: rgba(95, 39, 205, 0.06);
    border-color: rgba(95, 39, 205, 0.3);
    color: var(--accent-purple);
}

/* Detail Thread Viewer */
.thread-card {
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.05);
}

.thread-header {
    border-bottom: 1px solid #dadce0;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.thread-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #5f6368;
    margin-top: 6px;
}

.thread-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #202124;
    white-space: pre-wrap;
}

