:root {
    --bg-dark: #0a0a0c;
    --bg-panel: #1a1a20;
    --text-main: #ffffff;
    --text-muted: #8a8a93;
    --accent: #00e5ff;
    --accent-hover: #00b3cc;
    --border: #2a2a35;
    --radius: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
}

/* LEFT PANEL */
.left-panel {
    width: 400px;
    background-color: var(--bg-panel);
    border-right: 1px solid var(--border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.sidebar-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sidebar-header-text h1 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.row {
    display: flex;
    gap: 15px;
}

.form-group.row .col {
    flex: 1;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea,
select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.08);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* File Upload Button Styling - matching bluish accent theme */
input[type="file"]::file-selector-button {
    background-color: var(--accent);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="file"]::file-selector-button:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.primary-select {
    background-color: var(--accent) !important;
    color: #000 !important;
    border: none !important;
    font-weight: 800 !important;
    padding: 14px 15px !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
}

.primary-select:hover {
    background-color: var(--accent-hover) !important;
}

.primary-select option {
    background-color: var(--bg-panel);
    color: var(--text-main);
    font-weight: 400;
}

/* Custom Template Selector */
.template-type-selector {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #121216;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-top: 5px;
    margin-bottom: 25px;
}

.template-tab {
    background: transparent;
    color: var(--text-main);
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.template-tab:last-child {
    border-bottom: none;
}

.template-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 26px;
    color: var(--accent);
}

.template-tab.active {
    background: var(--accent);
    color: #000;
    font-weight: 800;
    box-shadow: inset 4px 0 0 #fff;
}


/* Background Selector */
.background-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bg-option {
    flex: 1 1 30%;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.bg-option input {
    display: none;
}

.bg-option img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
    opacity: 0.6;
    transition: all 0.2s;
}

.bg-option span {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(0,0,0,0.6);
    padding: 2px 6px;
    border-radius: 4px;
}

.bg-option input:checked + img {
    opacity: 1;
}

.bg-option:has(input:checked) {
    border-color: var(--accent);
}

/* Sub-selector Styles */
.shared-sub-selector.hidden,
.animated-sub-selector.hidden,
.personalized-sub-selector.hidden {
    display: none !important;
}

.sub-bg-option {
    cursor: pointer;
}

.sub-bg-option input {
    display: none;
}

.sub-thumb {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    transition: all 0.2s;
}

.sub-bg-option input:checked + .sub-thumb {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.sub-bg-option:hover .sub-thumb {
    border-color: var(--accent);
}


.btn-primary {
    width: 100%;
    background-color: var(--accent);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

/* RIGHT PANEL */
.right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(circle, #2a2a35 0%, #0a0a0c 100%);
    padding: 40px;
    padding-top: 100px;
    position: relative;
    overflow-y: auto;
}

.validation-message {
    width: 100%;
    max-width: 580px;
    background-color: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.top-nav {
    position: fixed;
    top: 30px;
    right: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 1000;
}

.top-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
}

.top-nav a:hover,
.top-nav a.active {
    color: var(--text-main);
}

.top-nav .nav-auth-btn {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.top-nav .nav-auth-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    background-color: rgba(26, 26, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: var(--text-muted) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 229, 255, 0.1);
    color: var(--accent) !important;
    padding-left: 30px;
}

/* Mobile Dropdown */
.mobile-sidebar-nav .nav-dropdown {
    width: 100%;
}

.mobile-sidebar-nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    display: none;
}

.mobile-sidebar-nav .nav-dropdown.active .dropdown-menu {
    display: block;
}

.mobile-sidebar-nav .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

.mobile-only {
    display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-panel);
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-sidebar-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.linkedin-feed-card {
    width: 100%;
    max-width: 580px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.feed-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feed-profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.feed-user-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feed-user-info strong {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.2px;
}

.feed-user-info span {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 3px;
}

.feed-follow-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feed-follow-btn:hover {
    color: var(--accent-hover);
}

.feed-footer {
    display: flex;
    justify-content: space-around;
    padding: 8px 16px;
    border-top: 1px solid var(--border);
}

.feed-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.feed-action.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.feed-action.liked {
    color: var(--accent);
}

.feed-action:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}
.feed-action.highlight {
    background-color: var(--accent);
    color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}
.feed-action.highlight:hover {
    background-color: var(--accent-hover);
}

.preview-wrapper {
    width: 100%;
    aspect-ratio: 1.414 / 1;
    background-color: #000;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: aspect-ratio 0.3s ease;
}

.preview-wrapper.square-ratio {
    aspect-ratio: 1 / 1;
    width: 100%;
    margin: 0 auto;
}

.square-ratio .preview-canvas #preview-title {
    font-size: 38px;
}

.square-ratio .preview-canvas .meta-info {
    font-size: 16px;
}

.square-ratio .preview-canvas .content-overlay {
    padding: 30px 30px 30px 55px;
}

.square-ratio .preview-canvas #preview-body {
    font-size: 18px;
}

.square-ratio .preview-canvas .apply-text {
    font-size: 24px;
    padding: 10px 35px;
}

.square-ratio .preview-canvas .apply-subtext {
    font-size: 17px;
    margin-top: 10px;
    letter-spacing: 0.3px;
}

.preview-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--theme-bg, #0a0a0c);
    border-left: var(--theme-border, none);
    overflow: hidden;
}

/* Base Theme Variables */
.preview-canvas {
    --theme-bg: #0a0a0c;
    --theme-text: #fff;
    --theme-text-muted: #eee;
    --theme-accent: #00e5ff;
    --theme-overlay: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
    --theme-heading: var(--theme-accent);
    --theme-apply-bg: var(--theme-accent);
    --theme-apply-text: #000;
    --theme-apply-subtext: #fff;
}

/* Theme 1: Default Dark/Teal */
.theme-1 {
    --theme-bg: #0a0a0c;
    --theme-accent: #00e5ff;
    --theme-border: 12px solid var(--theme-accent);
}


/* Theme 2: Dark Navy/Yellow */
.theme-2 {
    --theme-bg: #06112a;
    --theme-text: #fff;
    --theme-text-muted: #ccc;
    --theme-accent: #ffc107;
    --theme-overlay: linear-gradient(to right, rgba(6,17,42,0.9) 0%, rgba(6,17,42,0.6) 100%);
    --theme-border: 12px solid var(--theme-accent);
}

/* Theme 3: Dark Green/Light Green */
.theme-3 {
    --theme-bg: #0f291e;
    --theme-text: #fff;
    --theme-text-muted: #ddd;
    --theme-accent: #8bc34a;
    --theme-overlay: linear-gradient(to right, rgba(15,41,30,0.85) 0%, rgba(15,41,30,0.4) 100%);
}

/* Theme 4: Modern Purple */
.theme-4 {
    --theme-bg: #121212;
    --theme-text: #fff;
    --theme-text-muted: #aaa;
    --theme-accent: #b388ff;
    --theme-overlay: linear-gradient(135deg, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.6) 100%);
    --theme-apply-bg: var(--theme-accent);
    --theme-apply-text: #000;
    --theme-apply-subtext: #fff;
}

/* Theme 5: Light Coral */
.theme-5 {
    --theme-bg: #fdfbf7;
    --theme-text: #222;
    --theme-text-muted: #555;
    --theme-accent: #ff6b6b;
    --theme-overlay: linear-gradient(to right, rgba(253,251,247,0.9) 0%, rgba(253,251,247,0.7) 100%);
    --theme-border: 10px solid var(--theme-accent);
    --theme-apply-bg: var(--theme-accent);
    --theme-apply-text: #fff;
    --theme-apply-subtext: #222;
}

/* Theme 7: Custom placeholder */
.theme-7 {
    --theme-bg: #1a1a20;
    --theme-text: #fff;
    --theme-text-muted: #aaa;
    --theme-accent: #ff4081;
    --theme-overlay: rgba(0,0,0,0.6);
}



/* Theme 6: Clean Minimalist White */
.theme-6 {
    --theme-bg: #ffffff;
    --theme-text: #1a1a1a;
    --theme-text-muted: #4a4a4a;
    --theme-accent: #007bff; /* Vibrant Blue */
    --theme-overlay: rgba(255, 255, 255, 0.7);
    --theme-border: 12px solid var(--theme-accent);
    --theme-apply-bg: var(--theme-accent);
    --theme-apply-text: #fff;
    --theme-apply-subtext: #1a1a1a;
}

/* Theme 8: Premium GIF Gold */
.theme-8 {
    --theme-bg: #0a0a0c;
    --theme-accent: #00e5ff; /* Blue */
    --theme-text: #fff;
    --theme-text-muted: #ccc;
    --theme-overlay: rgba(0, 0, 0, 0.5); /* Semi-transparent to let GIF show through */
    --theme-border: none;
    --theme-apply-bg: var(--theme-accent);
    --theme-apply-text: #000;
    --theme-apply-subtext: #fff;
}

.theme-8 .content-overlay {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-8 #preview-title {
    color: var(--theme-accent);
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.theme-8 .meta-label {
    color: var(--theme-accent);
}

.theme-8 #preview-email {
    color: var(--theme-accent);
}

/* Theme 9: Premium Animated Cyan */
.theme-9 {
    --theme-bg: #000;
    --theme-accent: #00e5ff; /* Cyan */
    --theme-text: #fff;
    --theme-text-muted: #aaa;
    --theme-overlay: rgba(0, 0, 0, 0.4);
    --theme-border: 10px solid var(--theme-accent);
    --theme-apply-bg: var(--theme-accent);
    --theme-apply-text: #000;
    --theme-apply-subtext: #fff;
}

.theme-9 .content-overlay {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-right: 1px solid rgba(0, 229, 255, 0.2);
}

.theme-9 #preview-title {
    color: var(--theme-accent);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.theme-9 .meta-label {
    color: var(--theme-accent);
}

.theme-9 #preview-email {
    color: var(--theme-accent);
}

.theme-9 .theme-video::after {
    background: rgba(0, 0, 0, 0.15);
}

/* Theme 10: Premium Animated Clean Light (Theme 6 Style) */
.theme-10 {
    --theme-bg: #ffffff;
    --theme-text: #1a1a1a;
    --theme-text-muted: #4a4a4a;
    --theme-accent: #007bff; /* Vibrant Blue */
    --theme-overlay: rgba(255, 255, 255, 0.7);
    --theme-border: 12px solid var(--theme-accent);
    --theme-apply-bg: var(--theme-accent);
    --theme-apply-text: #fff;
    --theme-apply-subtext: #1a1a1a;
}

.theme-10 .content-overlay {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-right: 1px solid rgba(0, 123, 255, 0.3);
}

.theme-10 #preview-title {
    color: #000;
    text-shadow: none;
}

.theme-10 .meta-label {
    color: var(--theme-accent);
}

.theme-10 #preview-email {
    color: var(--theme-accent);
}

.theme-10 .theme-video::after {
    background: rgba(0, 0, 0, 0.15);
}



.theme-6 .content-overlay {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.theme-6 #preview-title {
    color: #000;
}

.theme-6 .meta-label {
    color: var(--theme-accent);
}

.theme-6 #preview-email {
    color: var(--theme-accent);
}

.theme-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.lottie-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0c;
}

.lottie-bg svg {
    width: 100% !important;
    height: 100% !important;
}

/* Darkening layer to emphasize text on bright images */
.theme-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.theme-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.theme-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}


.theme-decorations {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-size: cover;
    background-position: center;
}

/* Custom Design Blur Overlay */
.custom-design-overlay {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.theme-7 .custom-design-overlay {
    display: flex;
}

.theme-7 .content-overlay {
    filter: blur(12px);
    pointer-events: none;
}

.custom-design-overlay h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Text Overlay Styling to match sample output */
.content-overlay {
    position: absolute;
    inset: 0;
    background: var(--theme-overlay);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
    padding: 60px 60px 60px 85px;
    z-index: 2;
    box-sizing: border-box;
    gap: 12px; /* Reduced from 20px to tighten layout */
}

.header-section {
    margin-bottom: 5px; /* Reduced from 20px */
    flex-shrink: 0;
}

#preview-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--theme-heading);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
    max-width: 80%;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta-info {
    font-size: 18px;
    font-weight: 600;
    word-break: break-word;
    line-height: 1.3;
}

.meta-label {
    color: var(--theme-text);
}

#preview-location, #preview-salary {
    color: var(--theme-text-muted);
    font-weight: 400;
}

.meta-separator {
    margin: 0 10px;
    color: var(--theme-text-muted);
}

.body-section {
    flex-shrink: 0;
    min-height: 0;
    margin-bottom: 10px;
}

#preview-body {
    font-size: 18px; /* Reduced from 20px to fit more text */
    line-height: 1.5;
    color: var(--theme-text);
    max-width: 100%;
    max-height: 280px; /* Limit height to stay within the square */
    overflow: hidden;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.desc-intro {
    margin-bottom: 10px;
    font-weight: 800; /* Increased weight to match title style */
    color: var(--theme-heading);
    text-transform: uppercase; /* Match title style */
    font-size: 16px;
    letter-spacing: 1px;
}

.desc-help {
    font-size: 14px;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.8;
}


/* List Item Styles */
.list-item {
    display: flex;
    align-items: flex-start; /* Align bullet with top of text */
    margin-top: 15px;
    gap: 12px;
}

.list-number {
    font-weight: 800;
    color: var(--theme-accent);
    flex-shrink: 0;
    margin-top: 4px; /* Slight offset to align with text center-line */
}



/* Theme 6 List Style */
.theme-6 .list-item {
    border-left: 4px solid var(--theme-accent);
    padding-left: 12px;
}
.theme-6 .list-number {
    display: none;
}



.footer-section {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.apply-box {
    text-align: center;
}

.apply-text {
    display: inline-block;
    background-color: var(--theme-apply-bg);
    color: var(--theme-apply-text);
    font-weight: 800;
    font-size: 24px;
    padding: 10px 40px;
    margin-bottom: 5px;
    border-radius: 6px;
}

.apply-subtext {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-apply-subtext);
}

#preview-email {
    font-weight: 800;
    color: var(--theme-accent);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-panel);
    padding: 40px;
    border-radius: var(--radius);
    width: 400px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

.modal h2 {
    margin-bottom: 10px;
    color: var(--accent);
}

.modal p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

.modal .modal-note {
    font-size: 12px;
    font-style: italic;
    margin-bottom: 20px;
}

#auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#auth-form-fields {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced compact spacing between Email ID and Password */
}

#auth-form-fields input {
    margin-bottom: 0 !important;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-secondary {
    flex: 1;
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.auth-buttons .btn-primary {
    flex: 1;
    margin-top: 0;
}

/* Generated Caption Section */
.caption-container {
    width: 100%;
    background-color: transparent;
    padding: 15px;
    flex-shrink: 0;
    border-top: 1px solid var(--border);
    position: relative; /* For absolute positioning of edit button */
}

.btn-edit-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s;
    z-index: 5;
}

.btn-edit-icon:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.btn-edit-icon.editing {
    color: var(--accent);
}

.caption-container.hidden {
    display: none !important;
}

.caption-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-hover);
}

.caption-content textarea {
    width: 100%;
    min-height: 80px;
    background-color: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    resize: none;
    overflow: hidden;
    padding: 0;
}

.caption-content textarea:focus {
    outline: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    body {
        overflow: auto;
        height: auto;
    }
    
    .container {
        flex-direction: column-reverse;
        height: auto;
    }
    
    .left-panel {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px;
    }
    
    .right-panel {
        padding: 20px;
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .top-nav {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        margin-top: 20px;
        margin-bottom: 20px;
        justify-content: center;
        gap: 15px;
        width: 100%;
        z-index: 100;
    }
    
    .top-nav a {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .top-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    
    .sidebar-header {
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .right-panel {
        padding: 15px;
        padding-top: 20px;
    }
    
    .form-group.row {
        flex-direction: column;
        gap: 10px;
    }
    
    .desc-controls {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .feed-footer {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .feed-action {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    /* Adjust Preview Canvas for Mobile */
    .content-overlay, .square-ratio .preview-canvas .content-overlay {
        padding: 20px;
        gap: 5px;
    }
    
    #preview-title, .square-ratio .preview-canvas #preview-title {
        font-size: 20px;
        margin-bottom: 5px;
        max-width: 100%;
    }
    
    .custom-design-overlay h2 {
        font-size: 24px;
    }
    
    .modal-content {
        width: 90%;
        max-width: 400px;
        padding: 20px;
    }
    
    .meta-info, .square-ratio .preview-canvas .meta-info {
        font-size: 12px;
    }
    
    .meta-separator {
        margin: 0 5px;
    }
    
    #preview-body, .square-ratio .preview-canvas #preview-body {
        font-size: 12px;
        max-height: 120px; /* Restriction for mobile to stay in frame */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }

    .list-item {
        margin-top: 5px;
        gap: 6px;
    }
    
    .desc-intro {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .desc-help {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .apply-text, .square-ratio .preview-canvas .apply-text {
        font-size: 16px;
        padding: 8px 20px;
        margin-bottom: 2px;
    }
    
    .apply-subtext, .square-ratio .preview-canvas .apply-subtext {
        font-size: 10px;
        margin-top: 5px;
    }
    

    .theme-circle-bg {
        width: 120px;
        height: 120px;
        right: 5px;
        opacity: 0.2;
    }
    
    .background-options {
        gap: 10px;
    }

    .bg-option {
        flex: 1 1 30%;
    }

    .theme-thumb {
        height: 80px !important;
    }

    .theme-1, .theme-2, .theme-6, .theme-5 {
        --theme-border: 4px solid var(--theme-accent);
    }

    .mobile-only {
        display: block !important;
    }

    #mobile-theme-select {
        background-color: var(--bg-panel);
        color: var(--text-main);
        border: 1px solid var(--border);
        padding: 14px;
        font-weight: 600;
        appearance: auto; /* Use system dropdown on mobile for better usability, but keep our colors */
    }

    #mobile-theme-select option {
        background-color: var(--bg-panel);
        color: var(--text-main);
    }

    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 350px) {
    .right-panel {
        padding: 8px;
    }

    .linkedin-feed-card {
        border-radius: 8px;
    }

    .feed-header {
        padding: 8px 10px;
        gap: 8px;
    }

    .feed-profile-pic {
        width: 36px;
        height: 36px;
    }

    .feed-user-info strong {
        font-size: 12px;
    }

    .feed-user-info span {
        font-size: 9px;
    }

    .feed-follow-btn {
        font-size: 12px;
    }

    .preview-canvas #preview-title,
    .square-ratio .preview-canvas #preview-title {
        font-size: 20px !important;
    }

    .preview-canvas #preview-body,
    .square-ratio .preview-canvas #preview-body {
        font-size: 13px !important;
    }

    .preview-canvas .apply-text,
    .square-ratio .preview-canvas .apply-text {
        font-size: 16px !important;
        padding: 8px 20px !important;
    }

    .preview-canvas .apply-subtext,
    .square-ratio .preview-canvas .apply-subtext {
        font-size: 11px !important;
    }

    .preview-canvas .content-overlay,
    .square-ratio .preview-canvas .content-overlay {
        padding: 15px !important;
    }

    .meta-info {
        font-size: 11px !important;
    }
}
/* Modal System */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 440px;
    padding: 40px;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.auth-header p {
    color: #b0bec5;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #b0bec5;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #00e5ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

.auth-actions {
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }
}

/* Loading State for Themes */
.preview-canvas.loading-theme {
    position: relative;
}

.preview-canvas.loading-theme::after {
    content: 'Loading Theme...';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #00e5ff;
    font-weight: 800;
    font-size: 1.2rem;
    animation: pulseLoader 1.5s infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulseLoader {
    0% { opacity: 0.6; }
    50% { opacity: 0.9; }
    100% { opacity: 0.6; }
}

/* Footer Styles */
.main-footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 40px;
    margin-top: 60px;
    width: 100%;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 500;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 400px;
}

.footer-brand-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.footer-contact {
    min-width: 300px;
    text-align: left;
}

.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-email {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.footer-email:hover {
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 50px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copyright {
    text-align: center;
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 40px;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-tagline {
        text-align: center;
    }
    .footer-contact {
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        gap: 15px 25px;
    }
    .footer-copyright {
        text-align: center;
    }
}

/* Policy Page Specific Styles */
.policy-main {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    text-align: left;
}
.policy-title {
    margin-bottom: 40px;
    text-align: center;
}
.policy-title h2 {
    font-size: 2.5rem;
    color: #00e5ff;
    margin-bottom: 15px;
    font-weight: 800;
}
.policy-title p {
    font-size: 1.1rem;
    color: #b0bec5;
}
.policy-section {
    margin-bottom: 35px;
}
.policy-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 4px solid #00e5ff;
    padding-left: 15px;
}
.policy-section p, .policy-section ul {
    color: #a0aec0;
    line-height: 1.8;
    font-size: 1.05rem;
}
.policy-section ul {
    padding-left: 25px;
    margin-top: 10px;
}
.policy-section ul li {
    margin-bottom: 10px;
}
.contact-box {
    background: rgba(0, 229, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    margin-top: 40px;
}
.contact-box p {
    margin: 5px 0;
    color: #fff;
}
@media (max-width: 768px) {
    .policy-main {
        padding: 25px;
        margin: 30px 15px;
    }
    .policy-title h2 {
        font-size: 2rem;
    }
}

/* Preview Branding */
.preview-branding {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
    pointer-events: none;
    opacity: 0.9;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.preview-branding img {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    object-fit: cover;
}

.preview-branding span {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hide branding on small screens if needed, or adjust */
@media (max-width: 600px) {
    .preview-branding {
        top: 20px;
        right: 20px;
        padding: 6px 12px;
    }
    .preview-branding span {
        font-size: 11px;
    }
    .preview-branding img {
        width: 20px;
        height: 20px;
    }
}

/* Custom Template Request Modal */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

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

.custom-modal-card {
    background: rgba(25, 25, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    color: #fff;
}

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

.custom-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.custom-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.custom-modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00e5ff, #b388ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-modal-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.custom-modal-form .form-group {
    margin-bottom: 20px;
}

.custom-modal-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
    text-align: left;
}

.custom-modal-form input,
.custom-modal-form textarea {
    width: 100%;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.custom-modal-form input:focus,
.custom-modal-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.custom-modal-success {
    display: none;
    text-align: center;
    padding: 30px 0;
}

/* Hide pricing links from navigation and footer */
.top-nav a[href="pricing.html"],
.pricing-nav a[href="pricing.html"],
.footer-links a[href="pricing.html"],
.mobile-sidebar-nav a[href="pricing.html"] {
    display: none !important;
}

/* Brand Logo Container Overlay in Top Right Corner */
.brand-logo-container {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 95;
    max-width: 160px;
    max-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.brand-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.brand-logo-container.hidden {
    display: none !important;
}

/* Hide YourBrandName.html from all menus, navigation, buttons, and layouts */
a[href="YourBrandName.html"],
a[href^="YourBrandName.html"],
.btn-portal[href="YourBrandName.html"],
.bg-option[onclick*="YourBrandName.html"] {
    display: none !important;
}
