/* ========================================
   WISDOM OF GAIA - EXTRACTED CSS STYLESHEET
   Extracted from leftlist.php and rightlist.php
   ======================================== */

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-weight: bold;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    padding: 0px;
    width: 100%;
    max-width: 1128px;
    margin-right: auto;
    margin-left: auto;
}

h1 {
    margin: 5px;
    padding: 0px;
}

h2 {
    text-align: center;
}

/* ========================================
   LAYOUT COLUMNS
   ======================================== */

/* Left column */
.leftcolumn {   
    float: left;
    width: 70%;
}

/* Right column */
.rightcolumn {
    overflow: hidden;
    float: left;
    width: 30%;
    padding-left: 10px;
}

/* Clear floats after the columns */
.row:after {
    content: '';
    display: table;
    clear: both;
}

/* ========================================
   IMAGES
   ======================================== */

.leftimg {
    height: 200px;
    width: 200px;
    float: left;
    margin-right: 15px;
    overflow: auto;
}

.rightimg {
    height: 200px;
    width: 200px;
    float: right;
    overflow: auto;
}

.profile {
    position: absolute;
    top: 110px;
    right: 10px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    z-index: 10;
}

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

.card {
    overflow: auto;
}

/* Card1 class (inferred from usage) */
.card1 {
    background: white;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: auto;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    padding: 0px;
    height: 80px;
    width: 100%;
    z-index: 20;
}

.nav ul {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    padding: 0; 
    margin: 0;
    width: 100%;
    z-index: 20;
}

.nav li {
    flex: 1 1 100%;
    display: inline-block;
    list-style-type: none;
    white-space: nowrap;
    justify-content: space-around;
}

.nav a {
    display: block;
    line-height: 20px;
    padding-top: 5px;
    text-decoration: none;  
    color: white;
    font-size: 12pt;
    text-align: center;
    width: 100px;
    z-index: 20;
}

.nav img {
    display: block;
    margin: 0 auto;
    z-index: 20;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 5px;
    font-size: 40px;
    text-align: center;
    font-family: sans-serif;
    font-style: italic;
    color: white;
    background: white;
    background-image: url('https://wisdomofgaia.com/newimageblank1.png');
    background-size: 100% 100%;
    width: 100%;
}

/* ========================================
   GROVE BANNER
   ======================================== */

.grove-banner {
    background: linear-gradient(135deg, rgba(74, 35, 90, 0.85) 0%, rgba(102, 51, 153, 0.85) 100%), url('https://wisdomofgaia.com/uploads/covers/grove_2_67c7623aed4e2.png');
    background-size: cover;
    background-position: center;
    color: white;
    height: 300px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.grove-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -150px;
    right: -100px;
    z-index: 1;
}

.grove-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -150px;
    left: 50px;
    z-index: 1;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hbanner-content {
    display: flex;
    height: 300px;
    position: relative;
    z-index: 5;
    padding-top: 20px;
}

.hbanner-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.banner-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    color: white;
}

.banner-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 10px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    color: white;
}

.banner-actions {
    display: flex;
    gap: 15px;
}

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

.btn {
    text-decoration: none;
    display: inline-block;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.btn-primary {
    background-color: rgba(0,0,0,0.4);
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
}

.btn-outline-light {
    flex: 1;
    background-color: rgba(0,0,0,0.4);
    color: white;
    text-align: center; 
    border: 2px solid white;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
}

.btn-sign-in {
    background-color: rgba(0,0,0,0.4);
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    padding: 5px 25px;
    float: right;
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-sign-in:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
}

.btn-google-sign-in {
    background-color: white;
    color: #757575;
    border: none;
    border-radius: 25px;
    padding: 5px 15px;
    margin-right: 30px !important;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.btn-google-sign-in:hover {
    background-color: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.login-register-btn {
    background-color: #a78af8;
    float: right;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-register-btn:hover {
    background-color: #856bc0;
}

/* ========================================
   USER PROFILE AREA
   ======================================== */

.huser-profile-area {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
}

.huser-info {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.4);
    border-radius: 25px;
    padding: 5px 15px 5px 15px;
    backdrop-filter: blur(5px);
}

.user-name {
    color: white;
    font-weight: 500;
    margin-right: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.7);
}

.user-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #8A4FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
}

.user-profile-link {
    text-decoration: none;
    color: white;
    display: block;
}

.user-profile-link:hover .huser-info {
    background-color: rgba(0,0,0,0.6);
}

.guest-profile-link {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    background-color: rgba(0,0,0,0.4);
    border-radius: 25px;
    padding: 5px 15px;
    backdrop-filter: blur(5px);
    display: inline-block;
    color: white;
    border: 2px solid white;
}

.guest-profile-link:hover {
    background-color: rgba(0,0,0,0.6);
    text-decoration: none;
    color: white;
}

/* ========================================
   STATISTICS CONTAINER
   ======================================== */

.hstats-container {
    display: flex;
    gap: 30px;
    background-color: rgba(0,0,0,0.4);
    padding: 20px 30px;
    border-radius: 8px;
    z-index: 6;
    backdrop-filter: blur(5px);
}

.hstat-item {
    text-align: center;
    color: white;
}

.hstat-value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.hstat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   NOTIFICATIONS
   ======================================== */

.notifications-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 25;
    display: block;
}

.notification-icon {
    position: relative;
    cursor: pointer;
    padding: 8px;
    color: #f7f7f7;
    font-size: 18px;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 26;
}

.achievement-badge {
    background-color: #ffc107;
    color: #333;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    max-height: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow: hidden;
    display: none;
}

.notification-dropdown.show {
    display: block;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.notification-header h3 {
    margin: 0;
    font-size: 16px;
}

.notification-header .view-all {
    font-size: 13px;
    color: #7158e2;
    text-decoration: none;
}

.notification-list {
    max-height: 350px;
    overflow-y: auto;
}

.loading-indicator {
    padding: 15px;
    text-align: center;
    color: #777;
}

.notification-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: #f7f7f7;
}

.notification-item.unread {
    background-color: #f2f6ff;
}

.notification-link {
    display: flex;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.notification-content {
    flex: 1;
    overflow: hidden;
    color: #333;
}

.notification-message {
    font-size: 14px;
    margin-bottom: 3px;
}

.notification-time {
    font-size: 12px;
    color: #777;
}

.mark-read-btn {
    background: none;
    border: none;
    color: #7158e2;
    cursor: pointer;
    padding: 5px;
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.2s;
}

.notification-item:hover .mark-read-btn {
    opacity: 1;
}

.guest-notification {
    opacity: 0.7;
    cursor: help;
    position: relative;
}

.guest-notification:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}

/* Notification type styles */
.notification-topic_reply { 
    background-color: #7158e2; 
    color: white; 
}

.notification-mention { 
    background-color: #ff4757; 
    color: white; 
}

.notification-invitation { 
    background-color: #2ed573; 
    color: white; 
}

.notification-moderation { 
    background-color: #ffa502; 
    color: white; 
}

.notification-private_message { 
    background-color: #1e90ff; 
    color: white; 
}

/* ========================================
   ACHIEVEMENTS
   ======================================== */

.achievement-wrapper {
    position: absolute;
    top: 15px;
    left: 70px;
    z-index: 25;
    display: block;
}

.achievement-icon {
    position: relative;
    color: white;
    font-size: 18px;
    padding: 8px;
    display: inline-block;
    text-decoration: none;
}

.achievement-icon:hover {
    color: white;
    opacity: 0.9;
}

/* ========================================
   AI ASSISTANT WIDGET
   ======================================== */

.floating-ai-assistant {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: transparent;
}

#ai-chat-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: gentle-pulse 3s ease-in-out infinite;
    padding: 0;
    overflow: hidden;
}

#ai-chat-trigger img {
    border-radius: 50%;
    background: transparent !important;
    object-fit: cover;
    width: 60px !important;
    height: 60px !important;
    max-width: 60px;
    max-height: 60px;
    border: none;
    outline: none;
    display: block;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

#ai-chat-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.typing-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    border: 2px solid white;
}

.typing-indicator::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: typing-pulse 1s ease-in-out infinite;
}

@keyframes typing-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ai-chat-window {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 380px;
    height: 500px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-chat-window.active {
    display: flex;
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#ai-avatar {
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent !important;
    object-fit: cover;
    width: 48px !important;
    height: 48px !important;
    max-width: 48px;
    max-height: 48px;
    display: block;
    outline: none;
}

#ai-name {
    flex-grow: 1;
    font-weight: bold;
    font-size: 16px;
}

#switch-ai, #clear-history {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

#switch-ai:hover, #clear-history:hover {
    background: rgba(255,255,255,0.3);
}

#close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

#close-chat:hover {
    background: rgba(255,255,255,0.2);
}

#chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    scroll-behavior: smooth;
}

#chat-messages::-webkit-scrollbar {
    width: 6px;
}

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

#chat-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

#chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 85%;
    word-wrap: break-word;
    line-height: 1.4;
    animation: message-appear 0.3s ease-out;
}

@keyframes message-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    margin-left: auto;
    text-align: right;
    border-bottom-right-radius: 4px;
}

.ai-message {
    background: white;
    border: 1px solid #e9ecef;
    margin-right: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-bottom-left-radius: 4px;
}

.welcome-message {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.ai-intro {
    color: #495057;
}

.ai-intro strong {
    color: #667eea;
}

.thinking-message {
    background: #f8f9fa;
    border: 1px dashed #dee2e6;
    font-style: italic;
    color: #6c757d;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.chat-input {
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
}

#chat-input-field {
    flex-grow: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

#chat-input-field:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#send-message {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#send-message:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

#send-message:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.connection-status {
    padding: 8px 15px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 12px;
    text-align: center;
}

.connected {
    color: #28a745;
}

.connecting {
    color: #ffc107;
}

.disconnected {
    color: #dc3545;
}

.connected::before {
    content: "●";
    margin-right: 5px;
}

.connecting::before {
    content: "●";
    margin-right: 5px;
    animation: blink 1s infinite;
}

.disconnected::before {
    content: "●";
    margin-right: 5px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

#clear-and-close {
    background: rgba(255, 100, 100, 0.2);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: white;
    padding: 5px 8px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

#clear-and-close:hover {
    background: rgba(255, 100, 100, 0.4);
}

/* ========================================
   LISTS AND NAVIGATION TREES
   ======================================== */

ul, #myUL {
    list-style-type: none;
    font-family: sans-serif;
    font-size: 18px;
}

#myUL {
    margin: 0;
    padding: 0;
}

.caret {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.caret::before {
    content: '\25B6';
    color: black;
    display: inline-block;
    margin-right: 6px;
}

.caret-down::before {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.nested {
    display: none;
}

.active {
    display: block;
}

li a {
    color: darkgreen;
}

/* ========================================
   VIDEO WRAPPER
   ======================================== */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   SPECIAL ELEMENTS
   ======================================== */

.center-div {
    width: 30vw;
    height: 80vh;
    background-color: rgb(102, 71, 255);
    border-radius: 15px;
    padding: 5px;
    box-sizing: border-box;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile {
    display: none;
}

.fb-comments {
    background: white;
}

ins.adsbygoogle[data-ad-status='unfilled'] {
    display: none !important;
}

/* ========================================
   CNAME OPTIMIZATION CLASSES
   (New optimized classes for rightlist content)
   ======================================== */

.cname-item {
    width: 95%; /* 1/3 screen width */
    height: auto; /* Maintains proportions */
    max-width: 100%;
}

@media (min-width: 768px) {
    .cname-item { width: 95%; }
}

@media (max-width: 480px) {
    .cname-item { width: 45vw; }
}
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media screen and (max-width: 800px) {
    .notmobile { display: none; }
    
    .mobile {
        display: block;
        background-size: 100% 100%;
        padding: 0px;
        width: 100%;
        height: 300px;
    }
    
    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .leftimg {
        width: 100%;
        float: left;
        overflow: auto;
    }
    
    .rightimg {
        width: 100%;
        float: right;
        overflow: auto;
    }
    
    h1 { 
        margin: 0px;
        padding: 0px;
        font-size: 30px;
    }
    
    .nav {
        padding: 0px;
        height: 160px;
        width: 100%;
        z-index: 20;
    }
    
    .nav a {
        display: block;
        line-height: 20px;
        padding-top: 0px;
        padding-right: 2px;
        text-decoration: none;  
        color: white;
        font-size: 10pt;
        width: 17%;
        text-align: center;
    }
    
    .nav ul {
        display: inline-block;
        border-radius: 5px;
        overflow: hidden;
        padding: 0; 
        margin: 0;
        width: 100%;
    }
    
    .nav li {
        display: inline-block;
        list-style-type: none;
        z-index: 20;
    }
    
    .cname-item { width: 95%; }
}

@media (min-width: 768px) {
    .cname-item { width: 95%; }
}

@media (max-width: 991px) {
    .hbanner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hbanner-left {
        padding-right: 0;
        padding-top: 50px;
    }
    
    .banner-actions {
        display: flex;
        gap: 10px;
    }
    
    .banner-right {
        justify-content: center;
        margin-top: 20px;
    }
    
    .banner-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .huser-profile-area {
        right: 10px;
    }
    
    .hstats-container {
        display: none;
        gap: 15px;
        padding: 15px;
    }
    
    .hstat-value {
        font-size: 22px;
    }
    
    .hstat-label {
        font-size: 12px;
    }
    
    .user-name {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .center-div {
        height: 50vh;
        width: 100vw;
        background-color: rgb(102, 71, 255);
        border-radius: 15px;
        padding: 5px;
        box-sizing: border-box;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .profile { 
        display: none;
    }
}

@media (max-width: 575px) {
    .banner-right {
        display: none;
    }
    
    .hbanner-content {
        height: auto;
        min-height: 250px;
    }
    
    .grove-banner {
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .floating-ai-assistant {
        bottom: 15px;
        right: 15px;
    }
    
    .ai-chat-window {
        position: fixed;
        width: calc(100vw - 30px);
        height: calc(100vh - 140px);
        max-height: calc(100vh - 140px);
        bottom: 85px;
        right: 15px;
        left: 15px;
    }
    
    #ai-chat-trigger {
        width: 55px;
        height: 55px;
    }
    
    #ai-chat-trigger img {
        width: 55px !important;
        height: 55px !important;
    }
}