/* Minimalistic Black & White Design with Paintbrush Gradient */

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-dark: #333333;
    --color-gray-medium: #666666;
    --color-gray-light: #999999;
    --color-gray-lighter: #f5f5f5;
    --color-gold: #D4AF37;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
}

/* Simple Black to White Gradient Header - moved to separate banner */
.paintbrush-header {
    position: relative;
    background: transparent;
}

/* Gradient Banner below navbar */
.gradient-banner {
    width: 100%;
    height: 60px;
    background: linear-gradient(115deg, #353535 0%, #FFFFFF 100%);
}

.top-notice-banner {
    width: 100%;
    background-color: #d1ecf1;
    color: #0c5460;
    padding: 0.75rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid #bee5eb;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.top-notice-banner a {
    color: #0c5460;
    text-decoration: underline;
    font-weight: 700;
}

.migration-banner {
    width: 100%;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--color-gold) 15%, 
        var(--color-gold) 85%, 
        transparent 100%);
    color: #FFF;
    display: flex;
    align-items: center;
}

.migration-note {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
    max-width: 80%;
}

.migration-note a {
    color: #FFF;
    text-decoration: underline;
    font-weight: 600;
}

/* Navbar styling */
.navbar {
    position: relative;
    z-index: 10;
    padding: 1rem 0;
    background: transparent;
}

.navbar-brand {
    color: var(--color-black) !important;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--color-gray-dark) !important;
}

.nav-link {
    color: var(--color-black) !important;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.625rem 1rem;
    position: relative;
    -webkit-user-drag: none;
    user-select: none;
}

.nav-link:hover {
    color: var(--color-gray-dark) !important;
}

/* Brand link (This is Seon) - bold text, same size as other nav links */
.nav-link.brand-link {
    font-weight: 700;
    font-size: 1rem;
    padding: 0.625rem 1rem;
}

.dropdown-toggle {
    color: var(--color-black) !important;
}

.dropdown-toggle:hover {
    color: var(--color-gray-dark) !important;
}

.dropdown-menu {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1050;
    position: absolute;
}

.dropdown-item {
    color: var(--color-black);
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background-color: var(--color-gray-lighter);
    color: var(--color-black);
}

/* User dropdown styling */
#userDropdown {
    color: var(--color-black) !important;
}

#userDropdown:hover {
    color: var(--color-gray-dark) !important;
}


/* Content Styling */
main.container {
    min-height: 60vh;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-black);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

p {
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.lead {
    font-weight: 400;
}

/* Cards */
.card {
    border: 1px solid #333;
    border-radius: 4px;
    box-shadow: none;
}

.card-header {
    background-color: #f0f0f0;
    border-bottom: 1px solid #333;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.modal-title {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-gray-dark);
    border-color: var(--color-gray-dark);
}

.btn-outline-primary {
    border-color: var(--color-black);
    color: var(--color-black);
}

.btn-outline-primary:hover {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

/* Forms */
.form-control {
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
}

.form-control:focus {
    border-color: var(--color-black);
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.15);
}

/* Tables */
.table {
    border-color: var(--color-gray-light);
}

.table thead th {
    background-color: #f0f0f0;
    border-bottom: 1px solid #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Utility: bordered table container matching the site card style */
.table-bordered-container {
    border: 1px solid #333;
    border-radius: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Alerts */
.alert {
    border-radius: 4px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Pagination */
.pagination .page-link {
    color: var(--color-black);
    border: 1px solid var(--color-gray-light);
}

.pagination .page-item.active .page-link {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.pagination .pagination-status {
    min-width: 180px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.pagination .page-link:hover {
    background-color: var(--color-gray-lighter);
    color: var(--color-black);
}

/* Footer */
footer {
    background-color: var(--color-gray-lighter);
    border-top: 1px solid var(--color-gray-light);
    margin-top: auto;
}

/* Video Archive Specific */
.archive-header h1 {
    margin-bottom: 0;
}
.archive-header .lead {
    color: var(--color-gray-medium);
}

.video-filters {
    background-color: var(--color-gray-lighter);
    padding: 0.5rem 0.75rem; /* Even tighter */
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.video-filters .form-control,
.video-filters .form-select,
.video-filters .form-check-input,
.video-filters .form-check-label {
    font-size: 1rem;
}

.video-filters .form-control {
    padding: 0.25rem 0.5rem;
    height: auto;
}

.video-filters .form-label {
    margin-bottom: 0.125rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Progress Bar Gradients with Fixed Reveal (No Boomerang/Expanding) */
.progress-bar-striped {
    background-size: 1500px 100% !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    animation: none !important; /* Remove shimmer */
}

.bg-gradient-upload {
    background-image: linear-gradient(to right, #00d2ff, #3a7bd5) !important;
}
.bg-gradient-processing {
    background-image: linear-gradient(to right, #4b6cb7, #182848) !important;
}
.bg-gradient-s3 {
    background-image: linear-gradient(to right, #8e2de2, #4a00e0) !important;
}
.bg-gradient-extract {
    background-image: linear-gradient(to right, #f80759, #bc4e9c) !important;
}
.bg-gradient-audio-s3 {
    background-image: linear-gradient(to right, #f12711, #f5af19) !important;
}

.tag-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    margin: 0.125rem 0.25rem; /* Reduced vertical margin to control height better */
    color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.tag-badge-inline {
    font-weight: 600;
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.archive-table-container .table-responsive {
    border: 1px solid #333;
    overflow-x: auto;
}

.archive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: var(--color-white);
}

.archive-table thead {
    background: #f0f0f0;
}

.archive-table thead th {
    color: var(--color-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
    white-space: nowrap;
}

.archive-table tbody tr {
    border-bottom: 1px solid var(--color-gray-light);
    transition: background-color 0.2s ease;
}

.archive-table tbody tr:last-child {
    border-bottom: none;
}

.archive-table tbody tr:hover {
    background-color: var(--color-gray-lighter);
}

.archive-table td {
    vertical-align: middle;
    min-height: 40px;
    padding: 0.25rem 0.5rem;
    border: none;
}

.archive-table .content-btn {
    display: block;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .archive-table .content-btn {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 0.25rem;
    }
}

/* Loading state for AJAX list updates */
#video-list-wrapper {
    transition: opacity 0.2s ease-in-out;
}

/* Fixed height container for the table to stabilize pagination position */
.archive-table-container {
    height: 440px; /* Increased to accommodate 7 videos with tags without scrolling */
    overflow-y: auto;
    margin-bottom: 0.5rem; /* Reduced margin */
    border-radius: 4px;
}

.archive-content-wrapper {
    display: flex;
    flex-direction: column;
}

.archive-pagination-row {
    margin-top: auto;
    padding-top: 0.5rem; /* Reduced padding */
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Membership Card Hover */
.membership-card {
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.membership-card.featured {
    border-color: var(--color-black);
    background-color: var(--color-gray-lighter);
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
}

.membership-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-gray-medium);
}

/* Schedule Table */
.schedule-table-container {
    background: var(--color-white);
    border-radius: 4px;
    border: 1px solid #333;
    overflow: hidden;
    margin-top: 2rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.schedule-table thead {
    background: transparent;
}

.schedule-table thead th {
    color: var(--color-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.schedule-table tbody tr {
    border-bottom: 1px solid var(--color-gray-light);
    transition: background-color 0.2s ease;
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background-color: var(--color-gray-lighter);
}

.schedule-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border: none;
    text-align: center;
}

.schedule-table tbody td:first-child {
    font-weight: 600;
    color: var(--color-black);
}

.schedule-table tbody td:nth-child(2) {
    color: var(--color-gray-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
}

.schedule-table tbody td:nth-child(3) {
    color: var(--color-gray-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
}

.schedule-note {
    background: var(--color-gray-lighter);
    padding: 1rem;
    margin: 0;
    border-top: 1px solid var(--color-gray-light);
    font-size: 0.85rem;
    color: var(--color-gray-medium);
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .paintbrush-header {
        min-height: auto;
    }
    
    .membership-card {
        margin-bottom: 1rem;
    }
    
    .schedule-table thead th {
        font-size: 0.8rem;
        padding: 1rem 0.5rem;
        text-align: center;
    }
    
    .schedule-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Auth Popup Notification */
.auth-popup {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1050;
    white-space: nowrap;
    margin-right: 10px;
    font-weight: 500;
    animation: popupFadeIn 0.3s ease;
}

/* Auth Popup - Mobile (below username) */
@media (max-width: 991px) {
    /* Smooth fade-out when the menu closes */
    .navbar-collapse .nav-item {
        transition: opacity 0.25s ease;
    }

    /* Allow the gold halo box-shadow to render outside the collapse boundary
       without adding internal height (which would affect animation distance) */
    .collapsing {
        overflow: clip !important;
        overflow-clip-margin: 22px;
    }

    .auth-popup {
        position: absolute;
        left: 50%;
        right: auto;
        top: 100%;
        transform: translateX(-50%);
        margin-right: 0;
        margin-top: 8px;
        white-space: normal;
        max-width: 250px;
        text-align: center;
        animation: popupFadeInMobile 0.3s ease;
    }
}

.auth-popup.fade-out {
    animation: popupFadeOut 0.5s ease forwards;
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(-50%) translateX(10px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes popupFadeInMobile {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes popupFadeOut {
    to { opacity: 0; transform: translateY(-50%) translateX(-10px); }
}

@media (max-width: 991px) {
    @keyframes popupFadeOut {
        to { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    }
}

/* Footer Links */
footer a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #E5C158;
    text-decoration: underline;
}

/* Active Navigation Gold Glow - Permanent Base Layer */
.nav-link.active {
    color: var(--color-gold) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    position: relative;
    /* Permanent subtle glow - always visible, never animated */
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    border-radius: 50px;
}

/* Animated Pulse Halo Layer (::before) - fades in/out during transitions */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    /* Stronger pulse glow - animated */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.nav-link.active::before {
    opacity: 1; /* Full pulse glow when active */
}

/* Animation Classes - 50% overlap timing */
.nav-link.animating-out::before {
    /* Pulse halo fades out (0.5s - simple ease-in-out) */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.nav-link.animating-in::before {
    /* Pulse halo fades in (0.7s - simple ease-in-out) */
    opacity: 1;
    transition: opacity 0.7s ease-in-out;
}

/* Sticky Footer Layout */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header stays at top */
.paintbrush-header {
    flex-shrink: 0;
}

/* Main content area grows and allows scrolling */
main.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: relative;
    min-height: 0;
}

/* Footer - always visible at viewport bottom */
#main-footer {
    flex-shrink: 0;
    opacity: 1;
    padding: 0.75rem 0;
    text-align: center;
    border-top: 1px solid var(--color-gray-light);
    background: var(--color-white);
    margin-top: auto;
}

#main-footer a {
    -webkit-user-drag: none;
}

/* Unified Member Area Sections */
.uz-section {
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    background: var(--color-white);
    margin-bottom: 1.25rem;
}

.uz-section-header {
    background: #f0f0f0;
    border-bottom: 1px solid #333;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-black);
}

.uz-section-body {
    padding: 1.5rem;
}

/* Membership plan rows */
.uz-plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--color-gray-light);
    gap: 1rem;
}

.uz-plan-item:last-child {
    border-bottom: none;
}

.uz-plan-item:hover {
    background-color: #fafafa;
}

.uz-plan-item-info {
    flex: 1;
    min-width: 0;
}

.uz-plan-item-info h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.uz-plan-item-info small {
    color: var(--color-gray-medium);
    display: block;
    max-width: 130ch;
}

.uz-plan-item form, 
.uz-plan-item > button {
    flex-shrink: 0;
}

.uz-plan-item button {
    width: 130px;
}

/* Navbar spacing */
.navbar-nav {
    gap: 0.5rem;
    align-items: center;
}

/* Ensure navbar items are vertically aligned */
.navbar-collapse {
    align-items: center;
}

/* Rounded tabs - match navbar style */
.nav-tabs {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    gap: 0.5rem;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 50px;
    color: var(--color-black) !important;
    font-weight: 400;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 0.625rem 1rem;
    margin-bottom: 0;
    position: relative;
}

.nav-tabs .nav-link:hover {
    /* Hover highlight removed */
}

.nav-tabs .nav-link.active {
    color: var(--color-gold) !important;
    background-color: transparent;
    border-color: transparent;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Light shadow effect for all images except homepage */
img {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

/* Exclude homepage image from shadow effect */
.home-image,
.home-image img {
    box-shadow: none !important;
}

/* Dynamic Content Height Transitions */
.tab-content-scrollable,
.text-content,
.run-seon-content {
    transition: max-height 0s ease-out;
    will-change: max-height;
}

/* Ensure content remains scrollable during transitions */
.tab-content-scrollable,
.text-content {
    overflow-y: auto;
}

/* ── SPA Page Sections ──────────────────────────────────────────────────────
   Each top-level page lives in a .page-section div inside #spa-root.
   Only the .active section is displayed; the fade-in animation duration matches
   Bootstrap's .tab-pane.fade (0.15s linear) for visual consistency.
   ─────────────────────────────────────────────────────────────────────────── */
/* #spa-root fills main.container exactly — no outer overflow/scroll */
#spa-root {
    flex: 1;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
    height: 100%;
    overflow: hidden;
    animation: spaFadeIn 0.15s linear;
}

@keyframes spaFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Mobile: let page sections expand naturally so main.container can scroll */
@media (max-width: 768px) {
    #spa-root {
        height: auto;
        overflow: visible;
    }

    .page-section.active {
        height: auto;
        overflow: visible;
    }
}

/* ── Timezone picker ──────────────────────────────────────────────────────── */
.tz-search-wrapper {
    position: relative;
}

.tz-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--color-white);
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.tz-suggestion-item {
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.tz-suggestion-item:hover,
.tz-suggestion-item.active {
    background-color: var(--color-accent, #0d6efd);
    color: var(--color-white);
}

.tz-suggestion-city {
    font-weight: 500;
}

.tz-suggestion-meta {
    font-size: 0.8rem;
    opacity: 0.75;
    white-space: nowrap;
}

.tz-selected-display {
    font-size: 0.85rem;
    color: #555;
    padding: 0.2rem 0;
}

/* Audio Controller */
.audio-controller-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.audio-prompt-text {
    font-size: 0.8rem;
    color: var(--color-gray-medium);
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

.audio-pill {
    width: 36px;
    height: 36px;
    background-color: var(--color-gold);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.audio-line {
    width: 3px;
    height: 14px;
    background-color: var(--color-white);
    border-radius: 2px;
    animation: soundWave 2.13s infinite ease-in-out;
    transform-origin: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.audio-line:nth-child(1) { animation-delay: -2.13s; }
.audio-line:nth-child(2) { animation-delay: -1.6s; }
.audio-line:nth-child(3) { animation-delay: -1.07s; }
.audio-line:nth-child(4) { animation-delay: -0.53s; }

@keyframes soundWave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* Active Playing State */
.is-playing .audio-pill {
    background-color: transparent;
    box-shadow: none;
}

.is-playing .audio-line {
    background-color: var(--color-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
}

.is-playing .audio-prompt-text {
    opacity: 0;
}

/* ── Third-party Resets (Summernote) ─────────────────────────────────────── */
/* Prevents global typography/card styles from breaking the editor UI */
.note-editor.note-frame {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    overflow: hidden;
}

.note-editor .note-toolbar {
    background-color: var(--color-gray-lighter) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 0.5rem !important;
}

/* Undo global uppercase metadata look on toolbar buttons */
.note-editor .note-btn {
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    padding: 0.25rem 0.5rem !important;
}

/* Fix dropdown menu typography */
.note-editor .dropdown-item {
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Reset internal paragraph spacing for the composer area */
.note-editable p {
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
}

.note-editor .note-statusbar {
    background-color: var(--color-gray-lighter) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}


