/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
*,
::after,
::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

::after,
::before {
    --tw-content: ''
}

:host,
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

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

b,
strong {
    font-weight: bolder
}

code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,
select {
    text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

menu,
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

[role=button],
button {
    cursor: pointer
}

:disabled {
    cursor: default
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    vertical-align: middle
}

img,
video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

/* Custom styles */
:root {
    --bg-primary: #0F0F0F;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #242424;
    --text-primary: #E5E5E5;
    --text-secondary: #A3A3A3;
    --border-color: #2A2A2A;
    --accent: #D97757;
    --sidebar-bg: #1A1A1A;
    --input-bg: #1A1A1A;
    --card-bg: #1A1A1A;
    --hover-bg: rgba(217, 119, 87, 0.1);
    --success: #10b981;
    --error: #ef4444;
    --message-user-bg: #242424;
    --toast-bg: #1A1A1A;
    --toast-text: #E5E5E5
}

body.light-mode {
    --bg-primary: #FAFAF8;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F5F5F0;
    --text-primary: #1A1A1A;
    --text-secondary: #737373;
    --border-color: #E5E5E0;
    --accent: #D97757;
    --sidebar-bg: #FFFFFF;
    --input-bg: #FFFFFF;
    --card-bg: #FFFFFF;
    --hover-bg: rgba(217, 119, 87, 0.1);
    --message-user-bg: #F0F0EA;
    --toast-bg: #FFFFFF;
    --toast-text: #1A1A1A
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overscroll-behavior: none;
    transition: background-color .2s ease, color .2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

/* Container and layout */
.h-screen {
    height: 100vh
}

.overflow-hidden {
    overflow: hidden
}

.flex {
    display: flex
}

/* Sidebar */
.sidebar {
    width: 280px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-shrink: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar.active {
    transform: translateX(0);
}

@media (min-width: 768px) {
    .sidebar {
        position: relative;
        transform: translateX(0);
    }
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

@media (min-width: 768px) {
    .main-content {
        margin-left: 280px;
        width: calc(100% - 280px);
    }
}

/* Fixed positioning utilities */
.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    inset: 0px
}

.bottom-0 {
    bottom: 0px
}

.left-0 {
    left: 0px
}

.right-0 {
    right: 0px
}

.right-1 {
    right: 0.25rem
}

.top-0 {
    top: 0px
}

.top-1 {
    top: 0.25rem
}

/* Z-index */
.z-30 {
    z-index: 30
}

.z-40 {
    z-index: 40
}

.z-50 {
    z-index: 50
}

/* Margin and padding */
.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.\!mt-0 {
    margin-top: 0px !important
}

.-ml-2 {
    margin-left: -0.5rem
}

.mb-0\.5 {
    margin-bottom: 0.125rem
}

.mb-1 {
    margin-bottom: 0.25rem
}

.mb-2 {
    margin-bottom: 0.5rem
}

.mb-3 {
    margin-bottom: 0.75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.ml-1 {
    margin-left: 0.25rem
}

.mt-1 {
    margin-top: 0.25rem
}

.mt-3 {
    margin-top: 0.75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-6 {
    margin-top: 1.5rem
}

/* Display */
.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.grid {
    display: grid
}

.hidden {
    display: none
}

/* Height and width */
.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-16 {
    height: 4rem
}

.h-24 {
    height: 6rem
}

.h-3 {
    height: 0.75rem
}

.h-4 {
    height: 1rem
}

.h-5 {
    height: 1.25rem
}

.h-6 {
    height: 1.5rem
}

.h-7 {
    height: 1.75rem
}

.h-8 {
    height: 2rem
}

.h-full {
    height: 100%
}

.max-h-\[120px\] {
    max-height: 120px
}

.min-h-\[24px\] {
    min-height: 24px
}

.min-h-\[60vh\] {
    min-height: 60vh
}

.w-12 {
    width: 3rem
}

.w-16 {
    width: 4rem
}

.w-24 {
    width: 6rem
}

.w-3 {
    width: 0.75rem
}

.w-4 {
    width: 1rem
}

.w-5 {
    width: 1.25rem
}

.w-6 {
    width: 1.5rem
}

.w-64 {
    width: 16rem
}

.w-7 {
    width: 1.75rem
}

.w-8 {
    width: 2rem
}

.w-full {
    width: 100%
}

/* Max width */
.max-w-2xl {
    max-width: 42rem
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-\[200px\] {
    max-width: 200px
}

/* Flex */
.flex-1 {
    flex: 1 1 0%
}

.flex-shrink-0 {
    flex-shrink: 0
}

/* Transform */
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1)
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1)
    }
}

.animate-bounce {
    animation: bounce 1s infinite
}

/* Cursor */
.cursor-pointer {
    cursor: pointer
}

/* Resize */
.resize-none {
    resize: none
}

/* Grid */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

/* Flex direction */
.flex-col {
    flex-direction: column
}

/* Alignment */
.items-center {
    align-items: center
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

/* Gap */
.gap-1 {
    gap: 0.25rem
}

.gap-2 {
    gap: 0.5rem
}

.gap-3 {
    gap: 0.75rem
}

/* Space */
.space-y-1>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse))
}

.space-y-2>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse))
}

.space-y-3>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse))
}

.space-y-4>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

/* Overflow */
.overflow-y-auto {
    overflow-y: auto
}

/* Text */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

/* Borders */
.rounded {
    border-radius: 0.25rem
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: 0.5rem
}

.rounded-xl {
    border-radius: 0.75rem
}

.\!border-4 {
    border-width: 4px !important
}

.border {
    border-width: 1px
}

.border-4 {
    border-width: 4px
}

.border-b {
    border-bottom-width: 1px
}

.border-r {
    border-right-width: 1px
}

.border-t {
    border-top-width: 1px
}

.border-\[\#D97757\] {
    --tw-border-opacity: 1;
    border-color: rgb(217 119 87 / var(--tw-border-opacity))
}

.border-\[var\(--border-color\)\] {
    border-color: var(--border-color)
}

.border-green-500\/30 {
    border-color: rgb(34 197 94 / 0.3)
}

.border-red-500\/30 {
    border-color: rgb(239 68 68 / 0.3)
}

/* Backgrounds */
.bg-\[\#D97757\] {
    --tw-bg-opacity: 1;
    background-color: rgb(217 119 87 / var(--tw-bg-opacity))
}

.bg-\[var\(--bg-primary\)\] {
    background-color: var(--bg-primary)
}

.bg-\[var\(--bg-secondary\)\] {
    background-color: var(--bg-secondary)
}

.bg-\[var\(--bg-tertiary\)\] {
    background-color: var(--bg-tertiary)
}

.bg-\[var\(--input-bg\)\] {
    background-color: var(--input-bg)
}

.bg-\[var\(--sidebar-bg\)\] {
    background-color: var(--sidebar-bg)
}

.bg-black\/60 {
    background-color: rgb(0 0 0 / 0.6)
}

.bg-green-500\/10 {
    background-color: rgb(34 197 94 / 0.1)
}

.bg-red-500\/10 {
    background-color: rgb(239 68 68 / 0.1)
}

.bg-red-500\/20 {
    background-color: rgb(239 68 68 / 0.2)
}

.bg-transparent {
    background-color: transparent
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.bg-opacity-90 {
    --tw-bg-opacity: 0.9
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.from-green-500 {
    --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.to-emerald-500 {
    --tw-gradient-to: #10b981 var(--tw-gradient-to-position)
}

/* Object fit */
.object-cover {
    object-fit: cover
}

/* Padding */
.p-1\.5 {
    padding: 0.375rem
}

.p-2 {
    padding: 0.5rem
}

.p-3 {
    padding: 0.75rem
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem
}

.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.pb-2 {
    padding-bottom: 0.5rem
}

.pb-44 {
    padding-bottom: 11rem
}

.pt-0\.5 {
    padding-top: 0.125rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-8 {
    padding-top: 2rem
}

/* Text alignment */
.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

/* Font sizes */
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-5xl {
    font-size: 3rem;
    line-height: 1
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem
}

/* Font weights */
.font-bold {
    font-weight: 700
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

/* Text transform */
.uppercase {
    text-transform: uppercase
}

/* Line height */
.leading-relaxed {
    line-height: 1.625
}

/* Letter spacing */
.tracking-wider {
    letter-spacing: 0.05em
}

/* Text colors */
.text-\[\#71717a\] {
    --tw-text-opacity: 1;
    color: rgb(113 113 122 / var(--tw-text-opacity))
}

.text-\[\#D97757\] {
    --tw-text-opacity: 1;
    color: rgb(217 119 87 / var(--tw-text-opacity))
}

.text-\[var\(--text-primary\)\] {
    color: var(--text-primary)
}

.text-\[var\(--text-secondary\)\] {
    color: var(--text-secondary)
}

.text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity))
}

.text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity))
}

/* Placeholder */
.placeholder-\[var\(--text-secondary\)\]::placeholder {
    color: var(--text-secondary)
}

/* Opacity */
.opacity-0 {
    opacity: 0
}

/* Shadows */
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

/* Outline */
.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}

/* Backdrop filters */
.backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: .15s
}

.transition-colors {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: .15s
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: .15s
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: .15s
}

.duration-300 {
    transition-duration: .3s
}

/* Voice Mode */
.voice-mode-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease
}

.voice-mode-overlay.active {
    opacity: 1;
    pointer-events: auto
}

.voice-orb {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D97757, #E88B6F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(217, 119, 87, 0.3)
}

.voice-orb.speaking {
    animation: voice-active 0.5s ease-in-out infinite
}

.voice-orb.listening {
    animation: voice-listen 1s ease-in-out infinite
}

@keyframes voice-active {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

@keyframes voice-listen {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(217, 119, 87, 0.5)
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 40px rgba(217, 119, 87, 0.8)
    }
}

.voice-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(217, 119, 87, 0.5);
    animation: wave-expand 2s ease-out infinite
}

.voice-wave:nth-child(2) {
    animation-delay: 0.5s
}

.voice-wave:nth-child(3) {
    animation-delay: 1s
}

@keyframes wave-expand {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

.voice-settings {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    min-width: 250px;
    z-index: 2600
}

.voice-select {
    width: 100%;
    padding: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: .85rem;
    margin-bottom: 12px
}

.voice-slider {
    width: 100%;
    margin-bottom: 8px
}

.voice-slider-label {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--text-secondary);
    margin-bottom: 4px
}

.voice-text {
    margin-top: 32px;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-align: center;
    max-width: 80%;
    z-index: 2600
}

.voice-controls {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 2600
}

.voice-btn-control {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease
}

.voice-btn-control:hover {
    background: var(--hover-bg);
    border-color: var(--accent)
}

.voice-btn-control.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.voice-btn-control.close {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444
}

/* Prose */
.prose {
    color: var(--text-primary);
    line-height: 1.6;
    max-width: none
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: .5em;
    line-height: 1.3
}

.prose h1 {
    font-size: 1.5em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: .3em
}

.prose h2 {
    font-size: 1.3em
}

.prose h3 {
    font-size: 1.1em
}

.prose strong,
.prose b {
    font-weight: 700 !important;
    color: var(--text-primary) !important
}

.prose p {
    margin-bottom: 1em
}

.prose ul,
.prose ol {
    margin-bottom: 1em;
    padding-left: 1.5em
}

.prose li {
    margin-bottom: .25em
}

.prose blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1em;
    margin-left: 0;
    margin-bottom: 1em;
    color: var(--text-secondary)
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: .9em;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    display: table
}

.prose thead {
    display: table-header-group;
    background-color: var(--bg-tertiary)
}

.prose tbody {
    display: table-row-group
}

.prose tr {
    display: table-row;
    border-bottom: 1px solid var(--border-color)
}

.prose tr:last-child {
    border-bottom: none
}

.prose th,
.prose td {
    display: table-cell;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary)
}

.prose th {
    font-weight: 600;
    background-color: var(--bg-tertiary);
    border-bottom: 2px solid var(--border-color)
}

.prose tr:last-child td {
    border-bottom: none
}

.prose tr:hover {
    background-color: var(--hover-bg)
}

.message-row {
    background-color: transparent !important
}

.message-row.message-user {
    background-color: var(--message-user-bg) !important
}

.prose pre {
    background: #1a1a1a !important;
    border-radius: 8px;
    padding: 1em;
    margin: 1em 0;
    position: relative;
    overflow-x: auto
}

.prose code:not(pre code) {
    background: rgba(217, 119, 87, 0.15);
    padding: .2em .4em;
    border-radius: 4px;
    color: var(--text-primary);
    font-family: Monaco, Menlo, monospace;
    font-size: .9em
}

/* Share Popup */
.share-popup {
    position: absolute;
    right: 0;
    top: 48px;
    width: 320px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    transform: scale(0.95) translateY(-10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1000
}

.share-popup.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto
}

.share-popup::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg)
}

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--toast-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--toast-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 90vw;
    white-space: nowrap
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1
}

.toast.success {
    border-left-color: #10b981
}

.toast.error {
    border-left-color: #ef4444
}

.toast.info {
    border-left-color: #3b82f6
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    padding: 16px
}

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

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.modal-overlay.active .modal-content {
    transform: scale(1)
}

.modal-large {
    max-width: 600px
}

/* Sidebar items */
.sidebar-item {
    transition: all .15s ease;
    cursor: pointer
}

.sidebar-item:hover {
    background-color: var(--hover-bg)
}

.sidebar-item.active {
    background-color: rgba(217, 119, 87, 0.15);
    border-left: 2px solid var(--accent)
}

/* Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
    border-radius: 3px
}

/* Message Animation */
.message-enter {
    animation: messageSlide 0.3s ease-out
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Badges */
.think-badge {
    background: linear-gradient(135deg, #D97757 0, #E88B6F 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.web-badge {
    background: linear-gradient(135deg, #3b82f6 0, #2563eb 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: .05em
}

/* Send Button */
.btn-send {
    background-color: var(--accent);
    transition: all .2s ease
}

.btn-send:hover:not(:disabled) {
    filter: brightness(1.1);
    transform: scale(1.05)
}

.btn-send:active:not(:disabled) {
    transform: scale(0.95)
}

.btn-send:disabled {
    opacity: .3;
    cursor: not-allowed
}

/* Delete Button */
.delete-btn {
    opacity: 0;
    transition: opacity .2s
}

.chat-item:hover .delete-btn {
    opacity: 1
}

@media (max-width:768px) {
    .delete-btn {
        opacity: 1
    }
}

/* Typing Cursor */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--accent);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 2px
}

@keyframes blink {

    0%,
    50% {
        opacity: 1
    }

    51%,
    100% {
        opacity: 0
    }
}

/* Copy Button */
.copy-btn {
    position: absolute;
    top: .5em;
    right: .5em;
    padding: .25em .75em;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 12px;
    color: #a3a3a3;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s
}

.prose pre:hover .copy-btn {
    opacity: 1
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff
}

/* Voice Recording */
.voice-btn.recording {
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    color: #ef4444
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0)
    }
}

/* File Tags */
.file-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 119, 87, 0.15);
    border: 1px solid rgba(217, 119, 87, 0.4);
    color: #d97757;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px
}

.file-processing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px
}

.file-processing .spinner {
    animation: spin 1s linear infinite
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* Avatars */
.avatar-gradient {
    background: linear-gradient(135deg, #667eea 0, #764ba2 100%)
}

.avatar-gradient-2 {
    background: linear-gradient(135deg, #f093fb 0, #f5576c 100%)
}

.avatar-gradient-3 {
    background: linear-gradient(135deg, #4facfe 0, #00f2fe 100%)
}

.avatar-gradient-4 {
    background: linear-gradient(135deg, #43e97b 0, #38f9d7 100%)
}

.avatar-gradient-5 {
    background: linear-gradient(135deg, #fa709a 0, #fee140 100%)
}

/* Think Content */
.think-content {
    background: rgba(217, 119, 87, 0.05);
    border-left: 2px solid #d97757;
    padding: .75em 1em;
    margin: .5em 0;
    border-radius: 0 8px 8px 0
}

.think-header {
    display: flex;
    align-items: center;
    gap: .5em;
    color: #d97757;
    font-size: .85em;
    font-weight: 600;
    margin-bottom: .5em
}

/* Quiz */
.quiz-container {
    max-height: 60vh;
    overflow-y: auto
}

.quiz-option {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all .2s ease;
    color: var(--text-primary)
}

.quiz-option:hover:not(:disabled) {
    border-color: var(--accent);
    background: var(--hover-bg)
}

.quiz-option.correct {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981
}

.quiz-option.incorrect {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444
}

.quiz-option:disabled {
    cursor: not-allowed;
    opacity: .7
}

.quiz-progress {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px
}

.quiz-progress-bar {
    height: 100%;
    background: var(--accent);
    transition: width .3s ease
}

/* Confetti */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    animation: confetti-fall 3s ease-out forwards;
    z-index: 2000
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0
    }
}

/* Thanks Message */
.thanks-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--bg-secondary);
    border: 2px solid var(--accent);
    padding: 24px 48px;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    z-index: 2001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(217, 119, 87, 0.5)
}

.thanks-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

/* Pro Banner */
.pro-banner {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.2) 0, rgba(217, 119, 87, 0.1) 100%);
    border: 1px solid rgba(217, 119, 87, 0.4);
    animation: pulse-border 2s infinite
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: rgba(217, 119, 87, 0.4)
    }

    50% {
        border-color: rgba(217, 119, 87, 0.8)
    }
}

/* PFP Upload */
.pfp-upload {
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.pfp-upload input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer
}

.pfp-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent)
}

/* Mode Indicator */
.mode-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 0 4px;
    flex-wrap: wrap
}

/* Legal Content */
.legal-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 8px
}

.legal-content h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 1em;
    margin-bottom: .5em;
    color: var(--text-primary)
}

.legal-content p {
    margin-bottom: .75em;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: .9em
}

.legal-content ul {
    margin-left: 1.5em;
    margin-bottom: .75em
}

.legal-content li {
    margin-bottom: .25em;
    color: var(--text-secondary);
    font-size: .9em
}

/* Refine Button */
.refine-btn.active {
    color: #10b981 !important
}

.refine-btn.processing {
    animation: spin 1s linear infinite
}

/* Theme Toggle */
#theme-toggle {
    background-color: var(--accent) !important
}

#theme-toggle .knob {
    transform: translateX(0);
    transition: transform .3s ease
}

body.light-mode #theme-toggle {
    background-color: #a3a3a3 !important
}

body.light-mode #theme-toggle .knob {
    transform: translateX(-24px)
}

/* Beta Warning */
.beta-warning {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease
}

.beta-warning.active {
    opacity: 1;
    pointer-events: auto
}

.beta-content {
    background: var(--bg-secondary);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 64, 1)
}

.beta-warning.active .beta-content {
    transform: scale(1)
}

.beta-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #d97757 0, #e88b6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px
}

.beta-icon svg {
    width: 32px;
    height: 32px;
    color: #fff
}

/* Pause Button */
.btn-pause {
    background-color: #ef4444 !important;
    animation: pulse 1.5s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

/* Compact Model Selector */
.model-selector-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

.model-select-compact {
    appearance: none;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 28px 6px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
    flex: 1;
    min-width: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23A3A3A3' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.model-select-compact:hover {
    border-color: var(--accent);
}

.model-select-compact:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(217, 119, 87, 0.2);
}

.model-select-compact option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px;
}

.model-badge {
    font-size: 0.7rem;
    color: var(--text-secondary);
    white-space: nowrap;
    background: var(--bg-tertiary);
    padding: 4px 8px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

/* Ensure indicators are hidden by default */
#think-indicator.hidden,
#web-indicator.hidden,
#refine-indicator.hidden,
#processing-indicator.hidden {
    display: none !important;
}

/* Message input refinements */
#message-input {
    font-size: 1rem;
    line-height: 1.5;
    padding: 8px 4px;
}

#message-input::placeholder {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Button icons */
.p-1\.5 {
    padding: 10px;
}

.p-1\.5 svg {
    width: 18px;
    height: 18px;
}

/* Send button */
.btn-send {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

/* Pro CTA */
.pro-cta {
    margin-top: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.2), rgba(217, 119, 87, 0.05));
    border: 2px solid var(--accent);
    border-radius: 16px;
    text-align: center
}

.pro-cta h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px
}

.pro-cta p {
    color: var(--text-secondary);
    margin-bottom: 12px
}

.pro-cta button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(217, 119, 87, 0.4)
}

.pro-cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(217, 119, 87, 0.6)
}

/* Message Limit */
.message-limit {
    font-size: .8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-align: right
}

/* Login Prompt */
.login-prompt {
    background: rgba(217, 119, 87, 0.1);
    border: 1px solid rgba(217, 119, 87, 0.3)
}

/* Welcome State */
#welcome-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem 1rem
}

@media (min-width:768px) {
    #welcome-state {
        min-height: 70vh;
        padding: 2rem
    }
}

.suggestion-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all .2s ease;
    cursor: pointer
}

.suggestion-card:hover {
    border-color: var(--accent);
    background-color: var(--hover-bg)
}

/* Input Container */
#input-container {
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    transition: all .2s ease;
    padding: 12px;
}

#input-container:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.2)
}

/* Hover Effects */
.hover\:bg-\[\#E88B6F\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(232 139 111 / var(--tw-bg-opacity))
}

.hover\:bg-\[var\(--hover-bg\)\]:hover {
    background-color: var(--hover-bg)
}

.hover\:bg-red-500\/20:hover {
    background-color: rgb(239 68 68 / 0.2)
}

.hover\:bg-white\/5:hover {
    background-color: rgb(255 255 255 / 0.05)
}

.hover\:text-\[\#E88B6F\]:hover {
    --tw-text-opacity: 1;
    color: rgb(232 139 111 / var(--tw-text-opacity))
}

.hover\:text-\[var\(--text-primary\)\]:hover {
    color: var(--text-primary)
}

.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity))
}

.hover\:underline:hover {
    text-decoration-line: underline
}

/* Focus */
.focus\:border-\[\#D97757\]:focus {
    --tw-border-opacity: 1;
    border-color: rgb(217 119 87 / var(--tw-border-opacity))
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.focus-within\:border-\[\#D97757\]\/50:focus-within {
    border-color: rgb(217 119 87 / 0.5)
}

.focus-within\:ring-2:focus-within {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus-within\:ring-\[\#D97757\]\/20:focus-within {
    --tw-ring-color: rgb(217 119 87 / 0.2)
}

/* Disabled */
.disabled\:opacity-30:disabled {
    opacity: 0.3
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .p-1\.5 {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-send {
        min-width: 48px;
        height: 48px;
        border-radius: 24px;
    }
    
    #message-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px 4px;
    }
    
    .model-select-compact {
        padding: 8px 30px 8px 12px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .model-badge {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .modal-content {
        max-width: 90%;
    }
}

/* Medium screen overrides */
@media (min-width: 768px) {
    .md\:hidden {
        display: none;
    }
    
    .md\:relative {
        position: relative;
    }
    
    .md\:h-16 {
        height: 4rem;
    }
    
    .md\:w-16 {
        width: 4rem;
    }
    
    .md\:min-h-\[70vh\] {
        min-height: 70vh;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:border-t-0 {
        border-top-width: 0px;
    }
    
    .md\:p-4 {
        padding: 1rem;
    }
    
    .md\:px-0 {
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .md\:pb-0 {
        padding-bottom: 0px;
    }
    
    .md\:pt-0 {
        padding-top: 0px;
    }
    
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}