/* assets/css/style.css */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #0f172a 0, #020617 45%, #020617 100%);
    color: #e5e7eb;
}

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

a:hover {
    text-decoration: underline;
}

.wcn-app {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

/* Sidebar */

.wcn-sidebar {
    background: linear-gradient(180deg, #020617 0%, #020617 40%, #0b1120 100%);
    border-right: 1px solid rgba(148, 163, 184, 0.15);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    max-height: 100vh;
}

.wcn-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.wcn-logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #22c55e 0, #16a34a 40%, #15803d 100%);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5), 0 12px 20px rgba(15, 23, 42, 0.9);
    font-size: 18px;
}

.wcn-logo-text {
    font-size: 14px;
}

.wcn-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.wcn-nav-link {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

/* Remove the ::after pseudo-element that was causing character encoding issues */
.wcn-nav-link::after {
    display: none !important;
}

.wcn-nav-link:hover {
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    transform: translateY(-1px);
}

/* Remove hover::after as well */
.wcn-nav-link:hover::after {
    display: none !important;
}

.wcn-nav-link.is-active {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(45, 212, 191, 0.2));
    color: #f9fafb;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

/* Sidebar projects */

.wcn-sidebar-projects {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 300px);
}

.wcn-sidebar-project-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    margin: 0 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #e5e7eb;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}

.wcn-sidebar-project-link:hover {
    background: rgba(148, 163, 184, 0.1);
    transform: translateX(2px);
}

.wcn-sidebar-project-link.is-active {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.wcn-sidebar-project-link.is-active:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateX(2px);
}

/* Sidebar user */

.wcn-sidebar-user {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.12), transparent 60%);
    border: 1px solid rgba(148, 163, 184, 0.25);
    position: fixed; /* Position the sidebar user at the bottom of the sidebar */
    bottom: 15px;
    width: 220px;
}

.wcn-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #22c55e 0, #16a34a 40%, #22c55e 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #f9fafb;
}

.wcn-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
}

.wcn-user-name {
    font-weight: 500;
}

.wcn-user-email {
    color: #9ca3af;
}

.wcn-logout-link {
    font-size: 11px;
    color: #9ca3af;
    text-decoration: underline;
}

/* Sidebar Toggle Button */
.wcn-sidebar-toggle {
    display: none; /* Hidden by default on desktop */
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    padding: 10px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1000;
    position: relative;
    flex-shrink: 0;
}

.wcn-sidebar-toggle:hover {
    background: rgba(148, 163, 184, 0.2);
    border-color: rgba(148, 163, 184, 0.5);
}

.wcn-sidebar-toggle svg {
    display: block;
}

/* Sidebar Overlay (Mobile) */
.wcn-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    transition: opacity 0.3s ease;
}

.wcn-app.sidebar-open .wcn-sidebar-overlay {
    display: block;
}

/* Collapsed Sidebar State */
.wcn-app.sidebar-collapsed {
    grid-template-columns: 0 minmax(0, 1fr);
}

.wcn-app.sidebar-collapsed .wcn-sidebar {
    width: 0;
    padding: 0;
    overflow: hidden;
    border-right: none;
}

.wcn-app.sidebar-collapsed .wcn-sidebar > * {
    opacity: 0;
    pointer-events: none;
}

/* Main */

.wcn-main {
    padding: 20px 26px 32px;
}

.wcn-main-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 18px;
}

.wcn-page-title {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: #f9fafb;
}

.wcn-page-subtitle {
    margin: 4px 0 0;
    font-size: 13px;
    color: #9ca3af;
}

.wcn-main-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Cards */

.wcn-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.wcn-card {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.16), rgba(15, 23, 42, 0.95));
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 14px 15px 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
    position: relative;
    overflow: hidden;
}

.wcn-card-title {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.wcn-card-title span {
    font-size: 11px;
    opacity: 0.7;
}

.wcn-card-value {
    font-size: 20px;
    font-weight: 600;
    color: #f9fafb;
}

.wcn-card-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 11px;
    color: #e5e7eb;
}

/* Chart containers */
.wcn-card canvas {
    max-height: 200px;
}

/* Buttons */

.wcn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    color: #020617;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
}

.wcn-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.45);
    filter: brightness(1.03);
}

.wcn-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.45);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
    min-height: 36px;
    white-space: nowrap;
}

.wcn-button-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.9);
}

.wcn-button-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: #dc2626;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
}

.wcn-button-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(220, 38, 38, 0.45);
    filter: brightness(1.1);
}

/* Make all buttons same height */
.wcn-button,
.wcn-button-secondary,
.wcn-button-danger,
.wcn-button-primary,
.wcn-button-blue,
.wcn-button-green,
.wcn-button-orange,
.wcn-button-purple,
.wcn-button-warning {
    min-height: 36px;
    white-space: nowrap;
}

/* Primary button (green - default) */
.wcn-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    color: #020617;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
}

.wcn-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.45);
    filter: brightness(1.03);
}

/* Blue button */
.wcn-button-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
}

.wcn-button-blue:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(59, 130, 246, 0.45);
    filter: brightness(1.1);
}

/* Green button */
.wcn-button-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
}

.wcn-button-green:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(16, 185, 129, 0.45);
    filter: brightness(1.1);
}

/* Orange button */
.wcn-button-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
}

.wcn-button-orange:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.45);
    filter: brightness(1.1);
}

/* Purple button */
.wcn-button-purple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.35);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
}

.wcn-button-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(168, 85, 247, 0.45);
    filter: brightness(1.1);
}

/* Warning button (yellow/orange) */
.wcn-button-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.1s ease;
}

.wcn-button-warning:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.45);
    filter: brightness(1.1);
}

/* WordPress Sites page styling */
.wcn-page-wordpress-sites .wcn-main-content {
    animation: fadeIn 0.3s ease-in;
}

/* Tables */

.wcn-table-card {
    margin-top: 4px;
}

.wcn-table-wrapper {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.95);
}

.wcn-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.wcn-table thead {
    background: rgba(15, 23, 42, 1);
}

.wcn-table th,
.wcn-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.wcn-table th {
    font-weight: 500;
    color: #9ca3af;
}

.wcn-table tbody tr:hover {
    background: rgba(15, 23, 42, 0.9);
}

/* Labels */

.wcn-badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
}

.wcn-badge-success {
    border-color: rgba(34, 197, 94, 0.7);
    background: rgba(22, 163, 74, 0.22);
    color: #bbf7d0;
}

.wcn-badge-danger {
    border-color: rgba(248, 113, 113, 0.7);
    background: rgba(248, 113, 113, 0.2);
    color: #fecaca;
}

.wcn-badge-warning {
    border-color: rgba(245, 158, 11, 0.7);
    background: rgba(245, 158, 11, 0.22);
    color: #fde68a;
}

/* Forms */

.wcn-form-card {
    max-width: 540px;
}

.wcn-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.wcn-label {
    font-size: 13px;
    color: #e5e7eb;
}

.wcn-input {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.95);
    padding: 8px 10px;
    font-size: 13px;
    color: #f9fafb;
}

.wcn-input:focus {
    outline: none;
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
}

.wcn-help {
    font-size: 11px;
    color: #9ca3af;
}

/* Login layout */

.wcn-login-page {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, #22c55e 0, #0f172a 42%, #020617 100%);
}

.wcn-login-panel {
    background: rgba(15, 23, 42, 0.97);
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 26px 26px 22px;
    width: 360px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
}

.wcn-login-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.wcn-login-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #22c55e 0, #16a34a 40%, #22c55e 100%);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.6), 0 14px 26px rgba(15, 23, 42, 0.9);
    font-size: 20px;
}

.wcn-login-title {
    font-size: 20px;
    margin: 0;
    color: #f9fafb;
}

.wcn-login-subtitle {
    margin: 2px 0 0;
    font-size: 12px;
    color: #9ca3af;
}

.wcn-alert {
    margin-bottom: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid rgba(248, 113, 113, 0.5);
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

/* Modal */
.wcn-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.wcn-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.wcn-modal-content {
    position: relative;
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.16), rgba(15, 23, 42, 0.95));
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wcn-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wcn-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #f9fafb;
}

.wcn-modal-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.wcn-modal-close:hover {
    background: rgba(148, 163, 184, 0.2);
    color: #e5e7eb;
}

.wcn-modal-body {
    padding: 24px;
    overflow-y: auto;
}

.wcn-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Progress */
.wcn-progress-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wcn-progress-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.wcn-progress-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wcn-progress-label {
    font-size: 12px;
    color: #9ca3af;
}

.wcn-progress-value {
    font-size: 20px;
    font-weight: 600;
    color: #f9fafb;
}

.wcn-progress-bar-container {
    position: relative;
}

.wcn-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.wcn-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #14b8a6);
    border-radius: 999px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.wcn-progress-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 600;
    color: #f9fafb;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.wcn-current-url {
    padding: 12px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wcn-current-url-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wcn-current-url-value {
    font-size: 13px;
    color: #e5e7eb;
    word-break: break-all;
    font-family: 'Courier New', monospace;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .wcn-app {
        grid-template-columns: 1fr;
    }
    
    .wcn-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 260px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        padding: 24px 20px;
        overflow-y: auto;
    }
    
    .wcn-app.sidebar-open .wcn-sidebar {
        transform: translateX(0);
    }
    
    .wcn-app.sidebar-open .wcn-sidebar > * {
        opacity: 1;
        pointer-events: auto;
    }
    
    .wcn-sidebar-toggle {
        display: block;
    }
    
    .wcn-main {
        padding: 16px;
    }
    
    .wcn-main-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }
    
    .wcn-page-title {
        font-size: 20px !important;
    }
    
    /* Make tables responsive */
    .wcn-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .wcn-table {
        min-width: 600px;
    }
    
    /* Make cards stack better on mobile */
    .wcn-info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust button sizes for mobile */
    .wcn-button,
    .wcn-button-secondary {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .wcn-sidebar-toggle {
        display: block;
    }
    
    .wcn-app {
        grid-template-columns: 240px minmax(0, 1fr);
    }
    
    .wcn-app.sidebar-collapsed {
        grid-template-columns: 0 minmax(0, 1fr);
    }
    
    .wcn-main {
        padding: 18px 20px;
    }
}

/* Desktop: Allow manual collapse */
@media (min-width: 1025px) {
    .wcn-sidebar-toggle {
        display: block;
    }
}
