/* =========================================================
   PROMPTFORGE — DESIGN SYSTEM
   =========================================================  */

:root {
    --primary-color: #8a2123;
    --primary-hover: #6a1618;
    --secondary-color: #d9a01c;
    --secondary-hover: #b8860b;
    --bg-color: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: rgba(226, 232, 240, 0.8);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --gradient-primary: linear-gradient(135deg, #8a2123 0%, #6a1618 100%);
    --gradient-gold: linear-gradient(135deg, #fcd34d 0%, #d9a01c 100%);

    --shadow-sm: 0 2px 4px rgba(138, 33, 35, 0.04);
    --shadow-md: 0 8px 16px rgba(138, 33, 35, 0.06);
    --shadow-lg: 0 15px 35px -5px rgba(138, 33, 35, 0.1);
    --shadow-glow: 0 0 20px rgba(217, 160, 28, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color) !important;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* =========================================================
   ANIMATED DOTS BACKGROUND & CANVAS
   ========================================================= */

.dots-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.bg-dots-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(rgba(138, 33, 35, 0.13) 1.5px, transparent 1.5px),
        radial-gradient(rgba(217, 160, 28, 0.12) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.7;
    animation: dotsDrift 45s linear infinite;
}

@keyframes dotsDrift {
    0% { background-position: 0 0, 15px 15px; }
    100% { background-position: 30px 30px, 45px 45px; }
}

/* =========================================================
   BACKGROUND BLOBS
   ========================================================= */

.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 160, 28, 0.4) 0%, rgba(217, 160, 28, 0) 70%);
    top: -200px;
    left: -100px;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(138, 33, 35, 0.3) 0%, rgba(138, 33, 35, 0) 70%);
    bottom: -300px;
    right: -200px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, -50px) scale(0.9); }
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* =========================================================
   HEADER
   ========================================================= */

.modern-header {
    background: transparent;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.brand-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.brand-divider {
    color: #cbd5e1;
    font-weight: 300;
    margin: 0 0.35rem;
}

.brand-tag {
    color: #8a2123;
    font-weight: 600;
}

/* =========================================================
   CARDS
   ========================================================= */

.card {
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(138, 33, 35, 0.12);
}

.card-body {
    padding: 1.75rem !important;
}

.prompt-input-card,
.prompt-output-card {
    height: auto !important;
    min-height: 560px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(138, 33, 35, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #6a1618 0%, #4a0f11 100%);
    box-shadow: 0 8px 25px rgba(138, 33, 35, 0.4);
    transform: translateY(-2px);
    color: white;
}

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

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

/* =========================================================
   PAGE LOADER
   ========================================================= */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f4f6f8;
    background-image: radial-gradient(rgba(138, 33, 35, 0.15) 1.5px, transparent 1.5px), radial-gradient(rgba(217, 160, 28, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 40px 40px;
    background-position: 0 0, 25px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    width: 150px;
    height: 150px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================================
   PROMPT HEADER ICONS
   ========================================================= */

.prompt-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(138, 33, 35, 0.2);
}

.prompt-header-icon.output-icon {
    background: var(--gradient-gold);
    box-shadow: 0 4px 12px rgba(217, 160, 28, 0.25);
    color: #1e293b;
}

/* =========================================================
   QUICK INSPIRATION CHIPS
   ========================================================= */

.quick-ideas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.quick-idea-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 2rem;
    border: 1px solid rgba(217, 160, 28, 0.35);
    background: rgba(217, 160, 28, 0.08);
    color: #854d0e;
    font-size: 0.74rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-idea-chip:hover {
    background: rgba(217, 160, 28, 0.22);
    border-color: var(--secondary-color);
    color: #713f12;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(217, 160, 28, 0.15);
}

/* =========================================================
   PROMPT TEXTAREA
   ========================================================= */

.prompt-textarea {
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 0.85rem 1.1rem;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: rgba(248, 250, 252, 0.5);
    resize: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.prompt-textarea:focus {
    border-color: rgba(138, 33, 35, 0.4);
    box-shadow: 0 0 0 4px rgba(138, 33, 35, 0.08);
    background: #ffffff;
    outline: none;
}

.prompt-textarea::placeholder {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* =========================================================
   CATEGORY PILLS
   ========================================================= */

.mb-3\.5 {
    margin-bottom: 1.25rem !important;
}

.category-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.72rem;
    border-radius: 2rem;
    border: 1.5px solid var(--border-color);
    background: rgba(248, 250, 252, 0.8);
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.category-pill:hover {
    border-color: rgba(138, 33, 35, 0.3);
    background: rgba(138, 33, 35, 0.04);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.category-pill.active {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(138, 33, 35, 0.25);
}

.category-pill.active:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(138, 33, 35, 0.35);
}

/* =========================================================
   CUSTOM ANIMATED DROPDOWNS (FLICKER-FREE)
   ========================================================= */

.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.custom-dropdown-btn:hover {
    border-color: rgba(138, 33, 35, 0.35);
    background-color: #fafbfd;
}

.custom-dropdown.open .custom-dropdown-btn,
.custom-dropdown-btn:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3.5px rgba(138, 33, 35, 0.1);
    background-color: #ffffff;
    outline: none;
}

.dropdown-label-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    padding-right: 0.5rem;
}

.dropdown-chevron {
    font-size: 0.72rem;
    color: var(--primary-color);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.custom-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 14px;
    box-shadow: 0 14px 35px -8px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(138, 33, 35, 0.06);
    padding: 6px;
    max-height: 165px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
    scrollbar-width: thin;
    scrollbar-color: rgba(138, 33, 35, 0.25) transparent;
}

.custom-dropdown.open .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.custom-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(138, 33, 35, 0.25);
    border-radius: 4px;
}

.custom-dropdown-item {
    padding: 0.48rem 0.65rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.custom-dropdown-item:hover {
    background: rgba(138, 33, 35, 0.05);
}

.custom-dropdown-item.selected {
    background: rgba(138, 33, 35, 0.09);
    border-left: 3px solid var(--primary-color);
}

.custom-dropdown-item .item-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.custom-dropdown-item.selected .item-title {
    color: var(--primary-color);
}

.custom-dropdown-item .item-desc {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* =========================================================
   GENERATE BUTTON
   ========================================================= */

.btn-generate {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    padding: 0.85rem 2rem !important;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px -4px rgba(138, 33, 35, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-generate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-generate:hover::before {
    left: 100%;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(138, 33, 35, 0.45);
    color: #ffffff !important;
}

.btn-generate:active {
    transform: translateY(0);
}

.btn-generate:disabled {
    background: var(--gradient-primary) !important;
    opacity: 0.9 !important;
    color: #ffffff !important;
    cursor: wait;
    transform: none;
}

.generate-spinner {
    width: 1.15rem;
    height: 1.15rem;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-right-color: #fcd34d;
    border-radius: 50%;
    animation: spinFast 0.65s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spinFast {
    to { transform: rotate(360deg); }
}

/* =========================================================
   PROMPT OUTPUT BOX & STATS
   ========================================================= */

.prompt-output-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.25rem;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 200px;
    max-height: 330px;
    position: relative;
}

.prompt-stats-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 0.22rem 0.55rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    white-space: nowrap;
}

#btn-copy-prompt,
#btn-regenerate {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.22rem 0.65rem !important;
    font-size: 0.74rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
    border-width: 1px !important;
}

#btn-copy-prompt {
    color: #475569 !important;
    border-color: #cbd5e1 !important;
    background-color: #ffffff !important;
}

#btn-copy-prompt:hover {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: rgba(138, 33, 35, 0.04) !important;
    transform: translateY(-1px);
}

#btn-copy-prompt.btn-success {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
}

#btn-regenerate {
    color: var(--primary-color) !important;
    border-color: rgba(138, 33, 35, 0.4) !important;
    background-color: #ffffff !important;
}

#btn-regenerate:hover {
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    background: var(--gradient-primary) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 33, 35, 0.2) !important;
}

/* Custom scrollbar */
.prompt-output-box::-webkit-scrollbar {
    width: 6px;
}

.prompt-output-box::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 0.6);
    border-radius: 8px;
}

.prompt-output-box::-webkit-scrollbar-thumb {
    background: rgba(138, 33, 35, 0.35);
    border-radius: 8px;
}

.prompt-output-box::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 33, 35, 0.65);
}

/* Empty state */
.prompt-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 180px;
    padding: 2rem 1rem;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(138, 33, 35, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulseIcon 2.5s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* Result text */
.prompt-result-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-main);
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.prompt-result-content {
    animation: fadeInUp 0.5s ease;
}

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

/* =========================================================
   PROMPT HISTORY SECTION
   ========================================================= */

.prompt-history-section {
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.prompt-history-list {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden !important;
    padding-right: 2px;
    scrollbar-width: thin;
    scrollbar-color: rgba(138, 33, 35, 0.25) transparent;
}

.prompt-history-list::-webkit-scrollbar {
    width: 4px;
    height: 0px;
}

.prompt-history-list::-webkit-scrollbar-horizontal {
    display: none !important;
    height: 0 !important;
}

.prompt-history-list::-webkit-scrollbar-track {
    background: transparent;
}

.prompt-history-list::-webkit-scrollbar-thumb {
    background: rgba(138, 33, 35, 0.25);
    border-radius: 4px;
}

.prompt-history-list::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 33, 35, 0.5);
}

.history-item {
    display: flex;
    align-items: center;
    padding: 0.45rem 0.65rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(248, 250, 252, 0.5);
    margin-bottom: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.history-item:hover {
    background: rgba(138, 33, 35, 0.03);
    border-color: rgba(138, 33, 35, 0.15);
    transform: translateX(3px);
}

.history-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(138, 33, 35, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-right: 0.65rem;
}

.history-item-text {
    flex-grow: 1;
    min-width: 0;
}

.history-item-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-item-meta {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.history-item-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 1rem;
    background: rgba(217, 160, 28, 0.12);
    color: var(--secondary-hover);
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

/* =========================================================
   POWERED BY FOOTER
   ========================================================= */

.powered-by {
    text-align: center;
    margin-top: 3.5rem !important;
    margin-bottom: 2.5rem !important;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.powered-by a {
    color: #d9a01c !important;
    font-weight: 700;
    text-decoration: none;
}

.powered-by a:hover {
    text-decoration: underline;
}

/* =========================================================
   MODAL & TOAST
   ========================================================= */

.custom-toast {
    background: #0f172a !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.35) !important;
    min-width: 210px;
}

.custom-toast .toast-icon {
    font-size: 1.15rem;
    color: #10b981;
}

.custom-toast .toast-text {
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}

.modal-backdrop {
    z-index: 1050 !important;
    background-color: rgba(15, 23, 42, 0.45) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.modal { z-index: 1060 !important; }
.modal-dialog { z-index: 1065 !important; }

.modal-content {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 991.98px) {
    .prompt-input-card,
    .prompt-output-card {
        min-height: auto !important;
    }

    .prompt-output-box {
        max-height: 280px;
    }
    
    .prompt-history-list {
        max-height: 100px;
    }
}

@media (max-width: 575.98px) {
    .category-pill {
        font-size: 0.72rem;
        padding: 0.3rem 0.6rem;
    }

    .prompt-header-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .prompt-textarea {
        font-size: 0.88rem;
    }
}