@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors - Brand */
    --primary-color: #333;
    --secondary-color: #2c3e50;
    --accent-color: #d4af37;
    --danger-color: #e74c3c;
    --border-color: #e5e7eb;

    /* Modern Palette */
    --bg-body: #f3f4f6;
    --bg-panel: #ffffff;
    --bg-sidebar: #1f2937;
    /* Dark sidebar */
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-inverse: #f3f4f6;

    /* Specs */
    --page-width: 210mm;
    --page-height: 297mm;
    --page-padding: 10mm;

    /* UI Tokens */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@page {
    size: A4;
    margin: 0;
}

* {
    box-sizing: border-box;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

/* --- Panel Layout --- */
.app-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: var(--bg-body);
}

.editor-panel {
    width: 480px;
    /* Slightly wider for better breathing room */
    background: var(--bg-sidebar);
    color: var(--text-inverse);
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
    /* Softer, deeper shadow */
    z-index: 10;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    transition: width 0.3s ease;
}

/* Modern Scrollbar for Panel */
.editor-panel::-webkit-scrollbar {
    width: 6px;
}

.editor-panel::-webkit-scrollbar-track {
    background: transparent;
}

.editor-panel::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Custom Scrollbar for Editor Panel */
.editor-panel::-webkit-scrollbar {
    width: 8px;
}

.editor-panel::-webkit-scrollbar-track {
    background: #1a252f;
}

.editor-panel::-webkit-scrollbar-thumb {
    background: #34495e;
    border-radius: 4px;
}

.editor-panel::-webkit-scrollbar-thumb:hover {
    background: #4a6278;
}

.preview-area {
    flex: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    overflow: auto;
    /* Allow both X and Y scrolling */
    background: #bdc3c7;
    position: relative;
}

/* --- UI Controls --- */
.editor-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.editor-section h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-inverse);
    opacity: 0.9;
}

.form-group select,
.form-group textarea,
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="color"] {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-sans);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Range Slider */
input[type=range] {
    width: 100%;
    cursor: pointer;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    -webkit-appearance: none;
    appearance: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s;
    margin-top: -6px;
    /* center thumb */
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

input[type=range]:hover::-webkit-slider-thumb {
    transform: scale(1.1);
    background: var(--accent-color);
}

/* Visual Layout Selector */
.layout-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.layout-option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    height: 60px;
    display: flex;
    gap: 4px;
    transition: var(--transition);
    opacity: 0.7;
}

.layout-option-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(-2px);
}

.layout-option-btn.active {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    opacity: 1;
}

/* Page Transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-container,
.app-container {
    animation: fadeIn 0.4s ease-out;
}

.mini-block {
    background: #95a5a6;
    border-radius: 1px;
}

.layout-option-btn.active .mini-block {
    background: #ecf0f1;
}

/* Layout Mini-Grids */
.lo-1 {
    flex: 1;
    height: 100%;
}

.lo-2 {
    display: flex;
    width: 100%;
    gap: 2px;
}

.lo-2 .mini-block {
    flex: 1;
    height: 100%;
}

.lo-3 {
    display: flex;
    width: 100%;
    gap: 2px;
}

.lo-3 .mini-block {
    flex: 1;
    height: 100%;
}

.lo-4 {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.lo-4 .mini-block {
    width: 100%;
    height: 100%;
}

.lo-1-2 {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
}

.lo-1-2 .big {
    grid-row: span 2;
}


/* Drop Zone */
.drop-zone {
    border: 2px dashed #7f8c8d;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    color: #bdc3c7;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    margin-bottom: 10px;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
    color: white;
}

.file-input {
    display: none;
}

/* Sidebar Image List */
.image-manager-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 5px;
}

.im-item {
    position: relative;
    background: #111;
    border-radius: 4px;
    overflow: visible;
    /* Allow fit-bar to be visible outside the box */
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 3px;
}

.im-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.2s;
    border-radius: 3px 3px 0 0;
}

.im-item:hover img {
    opacity: 1;
}

.im-item .del-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.im-item:hover .del-btn {
    opacity: 1;
}

.img-count {
    font-size: 11px;
    color: #aaa;
    margin-top: 5px;
    text-align: right;
}

/* FLOATING TOOLBAR */
.floating-toolbar {
    position: absolute;
    background: #2c3e50;
    border: 1px solid #34495e;
    border-radius: 4px;
    padding: 5px;
    display: none;
    /* Hidden by default */
    gap: 5px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    max-width: 350px;
}

.floating-toolbar.visible {
    display: flex;
}

.floating-toolbar button {
    background: transparent;
    border: 1px solid transparent;
    color: white;
    padding: 4px 6px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
    min-width: 24px;
}

.floating-toolbar button:hover {
    background: #34495e;
    border-color: #7f8c8d;
}

.floating-toolbar .separator {
    width: 1px;
    background: #7f8c8d;
    margin: 0 2px;
}

.floating-toolbar select {
    background: #34495e;
    color: white;
    border: none;
    padding: 2px;
    font-size: 11px;
    border-radius: 2px;
}

/* Buttons */
.btn {
    padding: 10px 15px;
    cursor: pointer;
    background: var(--accent-color);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    width: 100%;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #b7952b;
}

/* --- Catalog Page Styles --- */
.page {
    width: var(--page-width);
    min-width: var(--page-width);
    /* FORCE: Never shrink below A4 width */
    /* Reduced slightly from 297mm to prevent PDF page overflow/blank page */
    height: 296.5mm;
    min-height: 296.5mm;
    /* FORCE: Never shrink below A4 height */
    max-height: 296.5mm;
    padding: var(--page-padding);
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    /* Cut off any spillover */
    page-break-after: avoid;
    /* Hint to avoid break */
    flex-shrink: 0;
    /* FORCE: Do not shrink in flex container */
    margin: auto;
    /* Center in container if possible */
}

/* Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    height: 60px;
    flex-shrink: 0;
}

.product-title-group {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    line-height: 1;
    margin-bottom: 2px;
    text-align: left;
}

.product-subtitle {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--accent-color);
    line-height: 1;
    text-align: left;
}

.product-title-third {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    line-height: 1;
    text-align: left;
    display: none;
    /* Hidden by default */
}

.brand-banner {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 30px 5px 40px;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    margin-right: -10mm;
    padding-right: 15mm;
    display: flex;
    align-items: center;
}

.brand-banner sup {
    font-size: 10px;
    font-style: normal;
    margin-left: 2px;
    top: -0.5em;
}

/* Images */
.header-images {
    height: 280px;
    display: grid;
    gap: 10px;
    flex-shrink: 0;
}

/* Image Slots */
.img-container {
    background-color: #f5f5f5;
    border: 1px dashed #ccc;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: move;
    transition: all 0.2s;
}

.img-container:hover {
    border-color: var(--accent-color);
    background-color: #fff9e6;
}

.img-container.dragging {
    opacity: 0.5;
    border: 2px solid var(--accent-color);
}

.img-container.drag-over {
    background-color: #ffeaa7;
    border: 2px solid var(--accent-color);
}

/* Cleaner PDF Generation */
.generating-pdf .img-container {
    border: none !important;
    padding: 2px !important;
    /* Compensation */
    background: transparent !important;
}

/* Fix Thick Borders */
.generating-pdf table,
.generating-pdf th,
.generating-pdf td {
    border-width: 0.25px !important;
    border-color: #555 !important;
}

.img-container img {
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}

.empty-slot-text {
    color: #ccc;
    font-size: 12px;
    text-align: center;
    pointer-events: none;
}

/* Layout Utilities */
.layout-1 {
    grid-template-columns: 1fr;
}

.layout-2 {
    grid-template-columns: 1fr 1fr;
}

.layout-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.layout-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.layout-1-2 {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.layout-1-2> :first-child {
    grid-row: span 2;
}


/* Content */
.content-columns {
    display: flex;
    gap: 30px;
    flex-grow: 1;
    overflow: hidden;
    width: 100%;
}

.column {
    text-align: left;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    line-height: 1.25;
    padding-left: 15px;
    color: #000;
    position: relative;
    white-space: pre-wrap;
    /* Use flex: 1 1 0 by default, updated by JS */
    flex: 1 1 0;
    min-width: 0;
    /* Safety */
    overflow-wrap: break-word;
    word-wrap: break-word;
    z-index: 1;
    /* Ensure text is above background but respecting flow */

    /* Accent Bar via Background for PDF Safety */
    background: linear-gradient(to bottom, var(--accent-color) 30px, transparent 30px);
    background-repeat: no-repeat;
    background-size: 4px 100%;
    /* Width 4px */
    background-position: 0 5px;
    /* Left 0, Top 5px */
}

/* Force pasted content to behave */
.column * {
    max-width: 100%;
    position: static !important;
    /* Prevent absolute positioning exploits from paste */
}

/* Remove pseudo-element approach to fix PDF misalignment */
/* .column::before { content: none; } */

/* Table */
.tech-specs {
    margin-top: auto;
    flex-shrink: 0;
}

table {
    width: auto;
    border-collapse: collapse;
    font-size: 11px;
}

th,
td {
    border: 1px solid #444;
    /* Darker border for crisp PDF look */
    padding: 0.3em 0.5em;
    /* Relative padding for scaling */
    text-align: center;
    line-height: 1.2;
    vertical-align: middle;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #000;
    /* Darker text */
    font-size: 1em;
    border-bottom: 2px solid #000;
    /* Distinct header border */
}

td.feature-name {
    font-weight: bold;
    width: 30%;
    background-color: #fafafa;
}

.page-footer {
    text-align: right;
    font-size: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 5px;
    padding-bottom: 2px;
    color: #777;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Print */
@media print {

    .editor-panel,
    .toolbar,
    .floating-toolbar {
        display: none;
    }

    .app-container {
        display: block;
        height: auto;
        overflow: visible;
    }

    .preview-area {
        display: block;
        padding: 0;
        background: none;
    }

    body {
        background: white;
    }

    .page {
        margin: 0;
        box-shadow: none;
        page-break-after: always;
        border: none;
        width: 100%;
        height: 100%;
        padding: var(--page-padding);
    }

    .brand-banner {
        margin-right: -10mm;
    }

    .img-container {
        border: none;
        background: none;
        cursor: default;
    }

    .empty-slot-text {
        display: none;
    }

    [contenteditable="true"] {
        box-shadow: none !important;
        background: none !important;
    }
}

/* --- Modern Slider Controls --- */
.slider-group {
    background: rgba(30, 39, 46, 0.5);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.slider-label {
    font-size: 12px;
    color: #bdc3c7;
    display: flex;
    align-items: center;
    gap: 5px;
}

.slider-value {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: bold;
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 30px;
    text-align: center;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-min,
.slider-max {
    font-size: 9px;
    color: #7f8c8d;
    width: 20px;
}

.slider-max {
    text-align: right;
}

/* --- Interactive Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    gap: 8px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    background: #c09b2e;
    /* Slightly darker accent */
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-danger {
    background: var(--danger-color);
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: #34495e;
    /* Slightly lighter than 2c3e50 */
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--text-primary);
    background: white;
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    box-shadow: none;
    padding: 8px;
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--danger-color);
}

/* --- Form Elements --- */
.search-input {
    width: 300px;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--bg-panel);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    width: 340px;
    /* Expand effect */
}

/* --- Dashboard Layout --- */
.dashboard-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.dashboard-title p {
    margin: 5px 0 0;
    color: var(--text-secondary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-panel);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-card.selected {
    box-shadow: 0 0 0 2px var(--accent-color), var(--shadow-lg);
    transform: translateY(-2px);
}

.card-preview {
    height: 180px;
    background: #f8f9fa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-preview img {
    transform: scale(1.05);
}

.card-index-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    backdrop-filter: blur(4px);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-actions {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Status Bar */
.status-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-sidebar);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.status-bar.visible {
    transform: translateX(-50%) translateY(0);
}

/* Tooltip */
.tooltip-icon {
    color: #7f8c8d;
    cursor: help;
    font-size: 11px;
    position: relative;
    transition: color 0.2s;
}

.tooltip-icon:hover {
    color: var(--accent-color);
}

.tooltip-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #ecf0f1;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a6278;
    margin-bottom: 5px;
}