:root {
    /* Original colors - too bright for white text */
    /* --brand-primary: #74d518; */
    /* --brand-secondary: #0080b9; */
    
    /* WCAG AA compliant colors (4.5:1 contrast with white) */
    --brand-primary: #5ba813; /* Darker green - was #74d518 */
    --brand-secondary: #006a9e; /* Darker blue - was #0080b9 */
    --brand-gradient: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    --brand-focus: rgba(0, 106, 158, 0.25);
}

.brand-page-bg {
    background: linear-gradient(135deg, #e0f4ff, #f1ffe1);
}

.dark .brand-page-bg {
    background: #0f172a;
}

.brand-gradient-bg {
    background: var(--brand-gradient);
}

.brand-bg-primary {
    background-color: var(--brand-primary);
}

.brand-bg-primary-soft {
    background-color: rgba(116, 213, 24, 0.12);
}

.brand-text-primary {
    color: var(--brand-primary);
}

.brand-text-secondary {
    color: var(--brand-secondary);
}

.brand-bg-secondary-soft {
    background-color: rgba(0, 128, 185, 0.12);
}

.brand-card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 25px 60px rgba(0, 128, 185, 0.12);
}

.dark .brand-card {
    background-color: #1f2937;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-button {
    background-color: var(--brand-primary);
    color: #ffffff;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 128, 185, 0.2);
}

.brand-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 128, 185, 0.25);
}

.brand-button-outline {
    background-color: #ffffff;
    color: var(--brand-primary);
    border: 1px solid rgba(0, 128, 185, 0.25);
    border-radius: 0.75rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-button-outline:hover {
    background-color: rgba(0, 128, 185, 0.08);
}

.brand-focus {
    border-color: var(--brand-primary);
}

.brand-focus:focus {
    outline: none;
    box-shadow: 0 0 0 4px var(--brand-focus);
    border-color: var(--brand-primary);
}

.brand-link:hover {
    color: #006a9e;
}

.logout-button {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.logout-button:hover {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    transform: translateY(-1px);
}

.brand-circle {
    border-radius: 9999px;
    background: var(--brand-gradient);
    color: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
}

body.chat-mobile-no-scroll {
    overflow: hidden;
}
.lucide { 
  display: inline-block !important; 
  vertical-align: middle; 
  flex-shrink: 0; 
  width: 1em; 
  height: 1em; 
  line-height: 1;
}

i[data-lucide] { 
  display: inline-block !important; 
  vertical-align: middle; 
  flex-shrink: 0; 
  width: 1em; 
  height: 1em; 
  line-height: 1;
}

i[data-lucide].w-3 { width: 0.75rem; } 
i[data-lucide].h-3 { height: 0.75rem; }
i[data-lucide].w-4 { width: 1rem; } 
i[data-lucide].h-4 { height: 1rem; }
i[data-lucide].w-5 { width: 1.25rem; } 
i[data-lucide].h-5 { height: 1.25rem; }
i[data-lucide].w-6 { width: 1.5rem; } 
i[data-lucide].h-6 { height: 1.5rem; }
i[data-lucide].w-8 { width: 2rem; } 
i[data-lucide].h-8 { height: 2rem; }

i[data-lucide] svg { 
  width: 100% !important; 
  height: 100% !important; 
  display: block !important;
}

i[data-lucide]:not(.lucide)::before { 
  content: ''; 
  display: block; 
  width: 100%; 
  height: 100%; 
  background: currentColor; 
  opacity: 0.2; 
  border-radius: 2px; 
}

i[data-lucide].lucide::before { 
  display: none !important; 
}

.back-confirm-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 20px);
    background: rgba(17, 24, 39, 0.92);
    color: #f9fafb;
    padding: 12px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 3000;
}

.back-confirm-toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Pinterest-style Masonry Layout */
.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (min-width: 1536px) {
    .masonry-grid {
        column-count: 4;
    }
}

.masonry-grid > article {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
}

/* Loading Screen */
.loading-gradient {
    background: #ffffff;
}

.dark .loading-gradient {
    background: #111827;
}

/* Loading screen text colors */
#loadingScreen .text-xl {
    transition: color 0.2s ease;
}

.dark #loadingScreen .text-xl {
    color: #f9fafb !important;
}

/* Image Lightbox */
.post-image {
    cursor: pointer;
    transition: opacity 0.2s;
}

.post-image:hover {
    opacity: 0.9;
}

/* Line clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category slider wrapper - prevents overflow */
.category-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Category slider inner container */
.category-slider-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #0080b9 #f1f1f1;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.category-slider-inner:active {
    cursor: grabbing;
}

.category-slider-inner.active {
    cursor: grabbing !important;
}

.category-slider-inner::-webkit-scrollbar {
    height: 6px;
}

.category-slider-inner::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.category-slider-inner::-webkit-scrollbar-thumb {
    background: #0080b9;
    border-radius: 3px;
}

.category-slider-inner::-webkit-scrollbar-thumb:hover {
    background: #006a9e;
}

/* Enhanced category buttons */
.category-buttons-container {
    text-align: center !important;
}

.category-buttons-container a {
    display: inline-block !important;
    vertical-align: top !important;
    margin: 8px !important;
    text-align: center !important;
    padding: 16px 12px;
    border-radius: 16px;
    font-weight: normal;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 120px;
    white-space: nowrap;
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
}

.category-buttons-container a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.1) 100%);
}

.category-buttons-container a i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.category-buttons-container a span {
    font-size: 0.875rem;
    text-align: center;
}

.category-buttons-container a .absolute {
    position: absolute;
    top: 4px;
    right: 4px;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-widget-toggle {
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 128, 185, 0.3);
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
}

.chat-widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 128, 185, 0.4);
}

.chat-widget.open .chat-widget-toggle {
    display: none;
}

.chat-widget-window {
    display: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 350px;
    height: 700px;
    max-height: 90vh;
    background: white;
    border-radius: 20px 0 0 0;
    box-shadow: 0 0 40px rgb(0, 0, 0);
    flex-direction: column;
    overflow: hidden;
}

.chat-widget.open .chat-widget-window {
    display: flex;
}

.chat-widget.minimized .chat-widget-window {
    height: 60px;
}

.chat-widget-header {
    background: var(--brand-gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-widget-title {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-widget-controls {
    display: flex;
    gap: 10px;
}

.chat-widget-controls button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.chat-widget-controls button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chat-widget-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f8fafc;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.bot {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-message.user .message-content {
    background: var(--brand-gradient);
    color: white;
    border-bottom-right-radius: 5px;
}

.chat-message.bot .message-content {
    background: white;
    color: #374151;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-widget-input-area {
    border-top: 1px solid #e5e7eb;
    background: white;
    padding: 15px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
}

.chat-input-container {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

#chat-input {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    resize: none;
    min-height: 40px;
    max-height: 120px;
    transition: border-color 0.2s ease;
}

#chat-input:focus {
    border-color: var(--brand-primary);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    background: var(--brand-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 128, 185, 0.3);
}

.chat-typing-indicator {
    text-align: center;
    color: #6b7280;
    font-size: 12px;
    margin-top: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .chat-widget {
        left: 0;
        right: 0;
        bottom: 24px;
        width: 100%;
        display: flex;
        justify-content: center;
        pointer-events: none;
    }

    .chat-widget-toggle {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin: 0 auto;
        pointer-events: auto;
    }

    .chat-widget-window {
        position: fixed;
        bottom: 104px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100vw - 32px);
        max-width: 420px;
        height: clamp(320px, 65vh, 500px);
        pointer-events: auto;
    }

    .chat-widget.chat-mobile-expanded {
        bottom: 0;
        pointer-events: auto;
    }

    .chat-widget.chat-mobile-expanded .chat-widget-toggle {
        display: none;
    }

    .chat-widget.chat-mobile-expanded .chat-widget-window {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100vw;
        max-width: none;
        height: var(--chat-mobile-viewport-height, 100vh);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        animation: none;
    }

    .chat-widget.chat-mobile-expanded .chat-widget-messages {
        padding-bottom: 70px;
    }
}

/* Scrollbar styling */
.chat-widget-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-widget-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.chat-widget-messages::-webkit-scrollbar-thumb {
    background: var(--brand-secondary);
    border-radius: 3px;
}

.chat-widget-messages::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Typing Indicator Animation */
.chat-typing-indicator .typing-content {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-secondary);
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Chat Markdown Styles */
.chat-markdown {
    line-height: 1.5;
}

.chat-markdown h1, .chat-markdown h2, .chat-markdown h3, .chat-markdown h4 {
    margin: 12px 0 8px 0;
    font-weight: 600;
    color: var(--brand-secondary);
    line-height: 1.3;
}

.chat-markdown h2 {
    font-size: 18px;
}

.chat-markdown h3 {
    font-size: 16px;
}

.chat-markdown h4 {
    font-size: 14px;
}

.chat-markdown p {
    margin: 8px 0;
}

.chat-markdown strong {
    font-weight: 700;
    color: var(--brand-primary);
}

.chat-markdown em {
    font-style: italic;
    color: #6b7280;
}

.chat-markdown code.chat-inline-code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    color: #dc2626;
    border: 1px solid #e5e7eb;
}

.chat-markdown pre.chat-code-block {
    background: #1f2937;
    color: #f9fafb;
    padding: 12px 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 8px 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    border: 1px solid #374151;
}

.chat-markdown pre.chat-code-block code {
    background: none;
    padding: 0;
    color: inherit;
    border: none;
}

.chat-markdown blockquote {
    border-left: 4px solid var(--brand-primary);
    padding-left: 12px;
    margin: 8px 0;
    color: #4b5563;
    font-style: italic;
    background: #f9fafb;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
}

.chat-markdown ul, .chat-markdown ol {
    margin: 8px 0;
    padding-left: 20px;
}

.chat-markdown li {
    margin: 4px 0;
}

.chat-markdown a {
    color: var(--brand-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.chat-markdown a:hover {
    color: var(--brand-secondary);
}

/* Chat Suggestions */
.chat-widget-suggestions {
    padding: 10px 15px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 120px;
    overflow-y: auto;
}

.chat-suggestion-btn {
    background: white;
    color: var(--brand-secondary);
    border: 1px solid var(--brand-primary);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.chat-suggestion-btn:hover {
    background: var(--brand-gradient);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 128, 185, 0.2);
}

/* Chat Post ID Buttons */
.chat-post-id-btn {
    background: var(--brand-gradient);
    color: white;
    border: none;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 2px;
}

.chat-post-id-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 128, 185, 0.3);
}

/* Chat Posts Modal Styles */
.chat-posts-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-posts-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.chat-posts-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    max-height: 90vh;
    width: 90%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-posts-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
}

.chat-posts-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-posts-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.chat-posts-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chat-posts-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 60vh;
}

.chat-post-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.chat-post-item:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(0, 128, 185, 0.1);
    transform: translateY(-2px);
}

.chat-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.chat-post-category {
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.chat-post-date {
    color: #6b7280;
    font-size: 12px;
}

.chat-post-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.chat-post-description {
    margin: 0 0 12px 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.chat-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-post-author {
    color: #6b7280;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-post-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.chat-post-link:hover {
    color: var(--brand-secondary);
}

.chat-post-images {
    margin-top: 12px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.chat-post-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.chat-post-images span {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.chat-posts-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.chat-filter-button {
    flex: 1;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.chat-filter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 128, 185, 0.3);
}

.chat-posts-modal-close-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.chat-posts-modal-close-btn:hover {
    background: #4b5563;
}

/* Lucide Icons Fix - ensure proper sizing */
[data-lucide] svg {
    width: 1em !important;
    height: 1em !important;
}

/* Threaded comments tree branches */
.comment-replies {
    position: relative;
}

.comment-thread-item {
    position: relative;
}

/* Draw a small ASCII-like branch at the left of each reply item */
.comment-replies > .comment-thread-item::before {
    content: '├';
    position: absolute;
    left: -1.25rem;
    top: -0.65rem;
    font-size: 1.75rem;
    color: #cbd5f5;
}

/* Last child in a replies block uses a closing branch */
.comment-replies > .comment-thread-item:last-child::before {
    content: '└';
}

@media (max-width: 768px) {
    .chat-posts-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .chat-posts-modal-body {
        padding: 15px;
        max-height: 60vh;
    }

    .chat-posts-modal-footer {
        flex-direction: column;
    }

    .chat-posts-modal-footer button {
        width: 100%;
    }
}