

/* Custom Website Styles */
:root {
    --primary-color: #5174c8;
    --primary-rgb: 81, 116, 200;
}

/* Primary color customizations */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.navbar-brand {
    background-color: none !important;
}

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

/* Portal feature card button padding */
.portal-feature-card .btn {
    padding-left: 24px;
    padding-right: 24px;
}

/* Appearance-specific styles */


/* Penny Chat Styles - PayHOA AI Assistant */

:root {
    --penny-primary: #0062DF;
    --penny-primary-rgb: 0, 98, 223;
    --penny-bg: #ffffff;
    --penny-text: #333333;
    --penny-text-secondary: #424E62;
    --penny-border: #e5e5e5;
    --penny-shadow: rgba(0,0,0,0.1);
}

/* Dark theme overrides */
[data-bs-theme="dark"] {
    --penny-bg: #1c1e23;
    --penny-text: #ffffff;
    --penny-border: #444444;
    --penny-shadow: rgba(0,0,0,0.3);
}

/* Chat Bubble - Beautiful gradient button with sparkle */
.penny-chat-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #42d8c6 100%);
    background-size: 200% 200%;
    border-radius: 100px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4), 0 8px 40px rgba(66, 216, 198, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Proxima Nova', 'DM Sans', Arial, sans-serif;
    color: white;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: penny-gradient-shift 8s ease infinite;
}

@keyframes penny-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Dark theme - same gradient style */
[data-bs-theme="dark"] .penny-chat-bubble {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5), 0 8px 40px rgba(66, 216, 198, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.penny-chat-bubble:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5), 0 12px 50px rgba(66, 216, 198, 0.3);
    animation-play-state: paused;
    background-position: 75% 50%;
}

/* Dark theme hover effect */
[data-bs-theme="dark"] .penny-chat-bubble:hover {
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6), 0 12px 50px rgba(66, 216, 198, 0.4);
}

/* Sparkle icon styling */
.penny-chat-bubble svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: penny-sparkle-pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* Make sparkle bigger on button hover */
.penny-chat-bubble:hover svg,
.penny-chat-bubble-outline:hover svg {
    animation: penny-sparkle-pulse-hover 1s ease-in-out infinite;
}

@keyframes penny-sparkle-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

@keyframes penny-sparkle-pulse-hover {
    0%, 100% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.6));
    }
    50% {
        transform: scale(1.25);
        opacity: 0.95;
        filter: drop-shadow(0 3px 10px rgba(102, 126, 234, 0.8));
    }
}

/* Alternative: Chat Bubble with Gradient Outline (Option 2) */
.penny-chat-bubble-outline {
    position: fixed;
    bottom: 24px;
    right: 24px;
    align-items: center;
    background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
    background-size: 200% 200%;
    border: 0;
    border-radius: 100px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    font-family: 'Proxima Nova', 'DM Sans', Arial, sans-serif;
    font-weight: 600;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
    animation: penny-gradient-shift 8s ease infinite;
}

.penny-chat-bubble-outline:active,
.penny-chat-bubble-outline:hover {
    outline: 0;
}

.penny-chat-bubble-outline .penny-bubble-inner {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 97px;
    width: 100%;
    height: 100%;
    transition: 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.penny-chat-bubble-outline:hover .penny-bubble-inner {
    background: none;
}

.penny-chat-bubble-outline:active {
    transform: scale(0.9);
}

/* Dark theme for outline button */
[data-bs-theme="dark"] .penny-chat-bubble-outline .penny-bubble-inner {
    background-color: rgb(5, 6, 45);
}

/* Dark theme hover - show gradient */
[data-bs-theme="dark"] .penny-chat-bubble-outline:hover .penny-bubble-inner {
    background: none;
}

/* Sparkle icon styling for outline button */
.penny-chat-bubble-outline svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: penny-sparkle-pulse 2s ease-in-out infinite;
}

/* Mobile responsive for outline button */
@media (max-width: 768px) {
    .penny-chat-bubble-outline {
        bottom: 16px;
        right: 16px;
        font-size: 14px;
        min-width: 120px;
    }

    .penny-chat-bubble-outline .penny-bubble-inner {
        padding: 12px 18px;
    }
}

/* Chat Widget - Modern popup style (not full-screen modal) */
.penny-chat-modal {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 9998;
    display: none;
}

.penny-chat-modal.show {
    display: block;
    animation: penny-slide-up 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes penny-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.penny-chat-container {
    background-color: var(--penny-bg);
    border-radius: 16px;
    width: 450px;
    height: 600px;
    max-height: calc(100vh - 140px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--penny-border);
}

/* Dark mode - light shadow for visibility */
[data-bs-theme="dark"] .penny-chat-container {
    box-shadow: 0 20px 60px rgba(255,255,255,0.1), 0 0 0 1px rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Chat Header */
.penny-chat-header {
    background-color: var(--penny-surface);
    color: var(--penny-text);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--penny-border);
}

.penny-chat-title {
    font-family: 'DM Sans', Arial, sans-serif !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.penny-chat-close {
    background: none;
    border: none;
    color: var(--penny-text);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.penny-chat-close svg {
    fill: var(--penny-text);
}

.penny-chat-close:hover {
    opacity: 0.7;
}

/* Chat Content */
.penny-chat-content {
    overflow-y: auto;
    flex: 1;
    font-family: 'DM Sans', Arial, sans-serif;
}

.penny-chat-inner {
    padding: 24px;
}

.penny-welcome {
    text-align: left;
    margin-bottom: 24px;
}

.penny-welcome .penny-greeting {
    font-family: 'DM Sans', Arial, sans-serif;
    color: var(--penny-text);
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 12px;
}

.penny-welcome p {
    color: var(--penny-text);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Chat Messages */
.penny-messages {
    margin-bottom: 8px;
}

.penny-message {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.penny-message.user {
    align-items: flex-end;
}

.penny-message.ai {
    align-items: flex-start;
}

.penny-message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.penny-message.user .penny-message-bubble {
    background-color: #343a46 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 24px 24px 4px 24px;
    max-width: 100%;
}

.penny-message.ai .penny-message-bubble {
    background-color: transparent;
    color: var(--penny-text);
    border-radius: 0;
    padding: 0;
    max-width: 100%;
}

/* Word-by-word reveal animation */
.penny-word-reveal {
    display: inline;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

/* Hide bullet points/numbers on individual list items during text animation */
.penny-list-item-hide-marker {
    list-style: none;
    transition: list-style 0.3s ease-in;
}

/* Show bullet points/numbers when list item's first word appears */
.penny-list-item-show-marker {
    list-style: inherit;
}

/* Feedback Buttons - Simple pale blue style */
.penny-feedback-prompt {
    margin-top: 0;
}

.penny-feedback-actions {
    display: flex;
    gap: 8px;
}

.penny-feedback-btn {
    flex: 1;
    background-color: #E3EFFD;
    color: #000000;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.penny-feedback-btn svg {
    flex-shrink: 0;
}

.penny-feedback-btn .thumbs-up-icon,
.penny-feedback-btn .user-icon {
    color: #000000;
}

.penny-feedback-btn:hover {
    background-color: #0062DF;
    color: #FFFFFF;
}

.penny-feedback-btn:hover .thumbs-up-icon,
.penny-feedback-btn:hover .user-icon {
    color: #FFFFFF;
}

/* Success button - green circular button with white thumbs up */
.penny-feedback-success {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #108967 !important;
    padding: 0 !important;
    cursor: default !important;
    pointer-events: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.penny-feedback-success svg {
    width: 16px;
    height: 16px;
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

.penny-feedback-success svg path {
    fill: #FFFFFF !important;
}

.penny-feedback-success:hover {
    background: #108967 !important;
}

/* Dark mode for feedback buttons */
[data-bs-theme="dark"] .penny-feedback-btn {
    background-color: #2C3E5A;
    color: #E3EFFD;
}

[data-bs-theme="dark"] .penny-feedback-btn .thumbs-up-icon,
[data-bs-theme="dark"] .penny-feedback-btn .user-icon {
    color: #E3EFFD;
}

[data-bs-theme="dark"] .penny-feedback-btn:hover {
    background-color: #3A4F6B;
}

/* Bootstrap tooltip z-index fix for Penny Chat */
.tooltip {
    z-index: 99999999 !important;
}

.tooltip-inner {
    z-index: 99999999 !important;
    /* Make tooltips fully opaque with theme-aware colors */
    background-color: var(--penny-text) !important;
    color: var(--penny-bg) !important;
    opacity: 1 !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-family: 'DM Sans', Arial, sans-serif !important;
    font-weight: 500 !important;
}

/* Also fix Bootstrap's tooltip arrow */
.tooltip .tooltip-arrow {
    z-index: 99999999 !important;
}

/* Theme-aware tooltip arrow colors */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--penny-text) !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--penny-text) !important;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--penny-text) !important;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--penny-text) !important;
}

/* Input Section */
.penny-input-section {
    padding: 16px 20px 20px 20px;
    background-color: var(--penny-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.penny-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.penny-input {
    width: 100%;
    border: 1px solid var(--penny-border);
    border-radius: 12px;
    padding: 12px 50px 12px 16px;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 0.95rem;
    resize: none;
    background-color: var(--penny-bg);
    color: var(--penny-text);
    max-height: 96px;
    min-height: 48px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.penny-input::-webkit-scrollbar {
    display: none;
}

.penny-input:focus {
    outline: none;
    border-color: #cccccc;
    padding: 14px 50px 14px 16px;
    min-height: 96px;
}

.penny-input::placeholder {
    color: #999999;
    font-style: italic;
}

.penny-send-btn {
    position: absolute;
    right: 8px;
    bottom: 8px;
    background-color: var(--penny-bg);
    color: var(--penny-text);
    border: 1px solid var(--penny-border);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'DM Sans', Arial, sans-serif;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.penny-send-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.penny-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.penny-send-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Phase 2: Detailed Feedback System */
.penny-feedback-modal {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 9998;
    display: none;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.penny-feedback-modal.show {
    display: block;
}

.penny-feedback-modal.show-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.penny-feedback-content {
    background: var(--penny-bg);
    border-radius: 16px;
    width: 450px;
    max-width: calc(100vw - 48px);
    max-height: 600px;
    overflow-y: auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.penny-feedback-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--penny-border);
}

.penny-feedback-back {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(77, 90, 110, 0.12), 0 0 1px 0 rgba(77, 90, 110, 0.40);
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Dark mode for feedback back button */
[data-bs-theme="dark"] .penny-feedback-back {
    background: var(--penny-bg);
    border: 1px solid var(--penny-border);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 0 1px 0 rgba(0, 0, 0, 0.4);
}

.penny-feedback-back:hover {
    background: #f5f5f5;
}

.penny-feedback-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    width: 30px;
    height: 30px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.penny-feedback-close:hover {
    background: transparent;
}

.penny-feedback-body {
    padding: 20px 24px 24px 24px;
}

.penny-feedback-body > h3 {
    color: var(--penny-text);
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 12px 0;
    font-family: 'DM Sans', Arial, sans-serif;
    text-align: left;
}

.penny-feedback-body > p {
    color: var(--penny-text-secondary);
    font-size: 14px;
    margin: 0 0 20px 0;
    font-family: 'DM Sans', Arial, sans-serif;
    line-height: 1.4;
    text-align: left;
}

.penny-feedback-form {
    margin: 0;
}

.penny-form-group {
    margin-bottom: 16px;
}

.penny-form-label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--penny-text);
    margin-bottom: 6px;
    font-family: 'DM Sans', Arial, sans-serif;
}

.penny-form-field {
    width: 100%;
    border: 1px solid var(--penny-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'DM Sans', Arial, sans-serif;
    color: var(--penny-text);
    background: var(--penny-bg);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.penny-form-field:focus {
    outline: none;
    border-color: var(--penny-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.penny-form-field::placeholder {
    color: var(--penny-text-secondary);
}

.penny-email-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'DM Sans', Arial, sans-serif;
}

.penny-feedback-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.penny-feedback-submit {
    padding: 8px 24px;
    background: var(--penny-text);
    border: none;
    border-radius: 25px;
    color: var(--penny-bg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', Arial, sans-serif;
    min-width: 100px;
}

.penny-feedback-submit:hover:not(:disabled) {
    background: var(--penny-text-secondary);
}

.penny-feedback-submit:disabled {
    background: var(--penny-border);
    cursor: not-allowed;
    opacity: 0.7;
    color: var(--penny-text-secondary);
}

.penny-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.penny-success-content {
    background: var(--penny-bg);
    border-radius: 16px;
    padding: 32px;
    max-width: 560px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.penny-success-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--penny-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.penny-success-close:hover {
    opacity: 0.7;
}

.penny-success-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.penny-success-text {
    width: 100%;
    margin-bottom: 16px;
}

.penny-success-text h3 {
    color: var(--penny-text);
    font-weight: 600;
    font-size: 21px;
    margin: 0 0 8px 0;
    font-family: 'Proxima Nova', 'DM Sans', Arial, sans-serif;
    line-height: 32px;
    text-align: left;
}

.penny-success-text p {
    color: var(--penny-text);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    font-family: 'Proxima Nova', 'DM Sans', Arial, sans-serif;
    text-align: left;
}

.penny-success-btn {
    background: var(--penny-text);
    color: var(--penny-bg);
    border: none;
    border-radius: 100px;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Proxima Nova', 'DM Sans', Arial, sans-serif;
    transition: all 0.2s ease;
    display: inline-block;
    line-height: 24px;
}

.penny-success-btn:hover {
    background: var(--penny-text-secondary);
    color: var(--penny-bg);
}

.penny-success-actions {
    width: 100%;
}

/* Loading States */
.penny-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0;
    color: var(--penny-text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Dark mode - white thinking text */
[data-bs-theme="dark"] .penny-typing {
    color: #ffffff;
}

.penny-typing-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 6px;
}

.penny-typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--penny-text);
    border-radius: 50%;
    opacity: 0.4;
    animation: penny-typing 1.4s infinite ease-in-out;
}

.penny-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.penny-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes penny-typing {
    0%, 80%, 100% { opacity: 0.4; transform: scale(1); }
    40% { opacity: 1; transform: scale(1.2); }
}

/* Success Message */
.penny-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    text-align: center;
}

/* Error Message */
.penny-error {
    background-color: #f8d7da;
    color: #721c24;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .penny-chat-modal {
        bottom: 80px;
        right: 10px;
        left: 10px;
    }

    .penny-chat-container {
        width: 100%;
        height: 550px;
        max-height: calc(100vh - 120px);
    }

    .penny-chat-inner {
        padding: 16px;
    }

    .penny-input-section {
        padding: 16px;
    }

    .penny-chat-bubble {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .penny-chat-container {
        width: 420px;
        height: 580px;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .penny-message.user .penny-message-bubble {
        background-color: #f6f7f9 !important;
        color: #000000 !important;
        border: none !important;
    }
}

[data-bs-theme="dark"] .penny-message.user .penny-message-bubble {
    background-color: #f6f7f9 !important;
    color: #000000 !important;
    border: none !important;
}