/* Dashboard Genel Stiller */
body {
    background-color: var(--background);
    color: #e6edf3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

#summaryModeBtn {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

#summaryModeBtn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-1px);
}

.dashboard-container {
    display: flex;
    flex-direction: column;
}

.page-title {
    color: #e6edf3;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1rem;
}

.profile-photo {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
}

.profile-name {
    font-size: 0.7rem;
    font-weight: normal;
    color: #e6edf3;
}

/* Sadece açık temada ızgara deseni göster */
[data-theme="light"] .channel-banner {
    background-image: linear-gradient(to right, rgba(200, 200, 200, 0.1) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(200, 200, 200, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.channel-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0.7;
    z-index: 1;
}

.banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.banner-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.banner-placeholder:hover .banner-logo {
    transform: scale(1.05);
    opacity: 1;
}

.banner-placeholder p {
    font-size: 1rem;
}

.card-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.card-footer {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.card-graph {
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    flex: 1;
    padding: 0 10px;
    text-align: center;
    margin: 0 auto;
}

.card-stats {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    justify-content: space-between;
}

.card-stats-left {
    display: flex;
    gap: 8px;
}

.card-stats-right {
    color: #94a3b8;
    font-size: 0.85rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #8b949e;
    font-size: 0.8rem;
    white-space: nowrap;
}

.stat i {
    font-size: 0.9rem;
}

/* Soru Baloncuğu */
/* Çizgi Roman Tarzı Soru Baloncukları */
.question-bubble {
    position: absolute;
    top: 40px;
    left: 20px;
    background-color: #FFEB3B;
    color: #333;
    border-radius: 18px;
    padding: 10px 14px;
    font-size: 0.8rem;
    max-width: 160px;
    z-index: 3;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #333;
}

.question-bubble:before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 15px;
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: #333 transparent;
    display: block;
    width: 0;
}

.question-bubble:after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 17px;
    border-width: 9px 9px 0;
    border-style: solid;
    border-color: #FFEB3B transparent;
    display: block;
    width: 0;
}

.question-bubble i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.question-bubble:hover {
    background-color: #FFF176;
    transform: translateY(-3px);
}

.question-bubble-secondary {
    top: 50px;
    right: 20px;
    left: auto;
    background-color: #FFEB3B;
    border-radius: 18px;
    border: 2px solid #333;
}

.question-bubble-secondary:before {
    left: auto;
    right: 15px;
    border-color: #333 transparent;
}

.question-bubble-secondary:after {
    left: auto;
    right: 17px;
    border-color: #FFEB3B transparent;
}

.question-bubble-third {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFEB3B;
    border-radius: 18px;
    border: 2px solid #333;
}

.question-bubble-third:before {
    left: 50%;
    transform: translateX(-50%);
    border-color: #333 transparent;
}

.question-bubble-third:after {
    left: 50%;
    transform: translateX(-50%);
    border-color: #FFEB3B transparent;
}

/* Soru Etiketleri */
.question-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 5px 0 10px 0;
}

.question-tag {
    display: inline-block;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.65rem;
    color: #666;
    transition: all 0.2s ease;
    font-weight: normal;
    letter-spacing: 0.2px;
}

.question-tag:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}

/* Chatbot Ekle Kartı */
.add-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border: 2px dashed #30363d;
    background-color: rgba(22, 27, 34, 0.5);
}

.add-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #8b949e;
    text-decoration: none;
    padding: 2rem;
    width: 100%;
    height: 100%;
    transition: color 0.2s;
}

.add-link:hover {
    color: #10b981;
}

.add-link i {
    font-size: 2rem;
}

.add-link span {
    font-weight: 500;
}

/* Alt Bilgi */
.dashboard-footer {
    background-color: var(--background);
    border-top: 1px solid var(--border-color);
    padding: 1rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #8b949e;
    font-size: 0.85rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .chatbot-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1rem;
    }
    
    .dashboard-content {
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .dashboard-content {
        padding: 0.5rem;
    }
    
    .chatbot-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .dashboard-content {
        padding: 0.5rem 0.25rem;
    }
    
    .chatbot-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 0.75rem;
    }
    
    .info-bar {
        margin-bottom: 0.75rem;
    }
    
    .search-container {
        margin-bottom: 0.75rem;
    }
}
  /* Sayfa geneli stil resetleme */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #ffffff !important;
}

/* Açık tema için tüm siyah kenarları kaldır */
html[data-theme="light"] body,
html[data-theme="light"] .dashboard-container,
html[data-theme="light"] .dashboard-content,
html[data-theme="light"] .container,
html[data-theme="light"] main {
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

/* Light theme için big-chat stilleri */
html[data-theme="light"] .big-chat-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f6f8fa 100%);
    border-bottom: 1px solid #d0d7de;
}

html[data-theme="light"] .big-chat-card {
    background: #ffffff;
    border: 1px solid #d0d7de;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .big-chat-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #2ea043;
}

html[data-theme="light"] .big-chat-text h3 {
    color: #24292f;
}

html[data-theme="light"] .big-chat-text p {
    color: #656d76;
}

/* Light theme için card stilleri */
html[data-theme="light"] .card-tags-container .badge-skill {
    background: #f6f8fa !important;
    color: #656d76 !important;
}

html[data-theme="light"] .card-footer-section {
    border-top-color: #d0d7de !important;
}

/* Koyu tema için renk tutarlılığı */
html[data-theme="dark"] body,
html[data-theme="dark"] .dashboard-container,
html[data-theme="dark"] .dashboard-content,
html[data-theme="dark"] .container,
html[data-theme="dark"] main,
html[data-theme="dark"] .chat-form {
    background-color: var(--background) !important;
}

/* Chatbot kutuları için özel stiller */
/* YouTube-style grid layout */
.chatbot-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding: 16px !important;
}

/* Responsive grid layout */
@media screen and (min-width: 992px) {
    .chatbot-grid {
        gap: 24px !important;
    }
}

@media screen and (max-width: 991px) {
    .chatbot-grid {
        gap: 20px !important;
    }
}

@media screen and (max-width: 576px) {
    .chatbot-grid {
        gap: 16px !important;
    }
}

.chatbot-card {
    background-color: transparent !important;
    color: var(--text-color) !important;
    transition: all 0.2s ease !important;
    width: calc(33.333% - 16px) !important; /* Default for large screens: 3 cards per row */
    padding: 8px !important;
    margin-bottom: 32px !important; /* Kartlar arası boşluğu artırıyoruz */
    border: 1px solid var(--border-color) !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column !important;
    position: relative !important;
}

/* Responsive card widths */
@media screen and (max-width: 991px) {
    .chatbot-card {
        width: calc(50% - 10px) !important; /* Medium screens: 2 cards per row */
    }
}

@media screen and (max-width: 576px) {
    .chatbot-card {
        width: 100% !important; /* Small screens: 1 card per row */
    }
}

.chatbot-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 30px rgba(0, 222, 70, 0.15) !important;
    transform: translateY(-4px) !important;
}

.card-info-bar {
    background-color: var(--card-info-bar-bg, #f6f8fa) !important;
    border-bottom: none !important;
}

.card-header {
    background-color: var(--card-bg, #ffffff) !important;
    border-bottom: 1px solid var(--border-color, #d0d7de) !important;
    padding: 16px !important;
}

.card-thumbnail-container {
    position: relative !important;
    width: 100% !important;
    height: 192px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    display: block !important;
}

/* Responsive thumbnail adjustments */
@media screen and (max-width: 576px) {
    .card-thumbnail-container {
        padding-top: 52% !important; /* Mobilde biraz daha kısa görünsün */
    }
}
.card-thumbnail {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}



.chatbot-card:hover .card-thumbnail {
    transform: scale(1.1) !important;
}

/* Thumbnail gradient overlay */
.thumbnail-gradient-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, var(--card-bg) 0%, transparent 40%, transparent 100%) !important;
    pointer-events: none !important;
}

.question-bubble {
    background-color: var(--card-bg, #ffffff) !important;
    color: var(--text-color, #1f2328) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    display: block !important;
    margin-right: 0 !important;
    font-size: 14px !important;
    border: 1px solid var(--border-color, #d0d7de) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}
/* Sarı okları kaldırıyorum */
.question-bubble:after, .question-bubble:before {
    display: none !important;
}

.card-questions {
    padding: 0 16px 16px;
}

.card-badges {
    position: absolute !important;
    top: 3% !important;
    left: 3% !important;
    display: flex !important;    
    flex-direction: row;   
    justify-content: space-between;
    z-index: 10 !important;
    width: 94% !important;
}

/* Responsive badge sizes */
@media screen and (max-width: 991px) {
    .badge-herkese-acik, 
    .badge-giris-gerekli, 
    .badge-ucretli, 
    .badge-temsilci {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
}

@media screen and (max-width: 576px) {
    .badge-herkese-acik, 
    .badge-giris-gerekli, 
    .badge-ucretli, 
    .badge-temsilci {
        font-size: 10px !important;
        padding: 3px 6px !important;
    }
}

/* Badge stilleri daha belirgin hale getirildi */
.badge-herkese-acik, .badge-giris-gerekli, .badge-ucretli, .badge-temsilci ,.badge-kolektif, .badge-kisisel ,
.badge-bilene-sor, .badge-urun-denedin-mi ,.badge-nereye-gitmeli ,.badge-haber ,.badge-kose-yazisi , .badge-notlarim ,.badge-blog {
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}
.badge-urun-denedin-mi {
    background-color: #fd7e14 !important;
}
.badge-nereye-gitmeli {
    background-color: #20c997 !important;
}
.badge-haber {
    background-color: #6c757d !important;
}
.badge-kose-yazisi {
    background-color: #6610f2 !important;
}
.badge-notlarim {
    background-color: #198754 !important;
}
.badge-blog {
    background-color: #e83e8c !important;
}
.badge-kategori{
    z-index: 1;
    align-self: flex-end;
}

.badge-herkese-acik {
    background-color: rgba(0, 222, 70, 0.2) !important;
    color: var(--primary-color) !important;
}

.badge-giris-gerekli {
    background-color: rgba(13, 110, 253, 0.8) !important; /* Mavi tonu */
}

.badge-ucretli {
    background-color: rgba(220, 53, 69, 0.8) !important; /* Kırmızı tonu */
}

.badge-temsilci {

    background-color: rgba(255, 193, 7, 0.8) !important; /* Sarı tonu */
}
.badge-kolektif {
 
    background-color: rgba(36, 255, 7, 0.548) !important; /* Sarı tonu */
}
.badge-kisisel {
 
    background-color: rgba(185, 7, 255, 0.534) !important; /* Sarı tonu */
}

.badge-yetenekler{
    background-color: rgba(22, 126, 8, 0.8);
    width: 100%;
    display: flex ;
    justify-content: space-evenly;
    align-items: center;
    z-index: 33;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 0;    
    padding: 2px 6px !important;
}


.card-badges i {
    margin-right: 4px !important;
}

.card-duration {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

/* Responsive duration badge */
@media screen and (max-width: 576px) {
    .card-duration {
        font-size: 10px !important;
        padding: 1px 4px !important;
    }
}

.card-info {
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
    gap: 16px !important;
    width: 100% !important;
    background: var(--card-bg) !important;
    position: relative !important;
    flex: 1 !important;
}

/* Text Section */
.card-text-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}



.card-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-color, #1f2328) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Responsive text sizes */
@media screen and (max-width: 992px) {
    .card-title {
        font-size: 16px !important;
    }
    
    .card-creator-name, 
    .card-stats {
        font-size: 12px !important;
    }
}

.card-creator-name {
    margin: 0 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    color: #9ca3af !important;
    width: fit-content !important;
    transition: color 0.2s !important;
}
.card-creator-name:hover {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

/* Tags Container */
.card-tags-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.card-tags-container .badge-skill {
    padding: 4px 8px !important;
    background: #1a1a1a !important;
    color: #9ca3af !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    border: none !important;
}

/* Footer Section */
.card-footer-section {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.card-stats-group {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.stat-item {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 14px !important;
    color: #9ca3af !important;
}

.stat-item i {
    font-size: 16px !important;
}

/* Action Button */
.card-action-btn {
    padding: 6px 12px !important;
    background: var(--primary-color) !important;
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.card-action-btn:hover {
    background: #00c93fb3 !important;
}

/* AI Search Hero Section - Minimal Design */
.ai-search-section {
    padding: 2rem 0;
    margin-bottom: 0;
}

.ai-search-card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.ai-search-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 0 2rem;
}

.ai-search-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -3rem;
}

.ai-search-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 222, 70, 0.3));
    transition: all 0.3s ease;
}

.ai-search-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(0, 222, 70, 0.4));
}

/* Logo tema uyumluluğu */
.ai-search-logo-dark {
    display: block;
}

.ai-search-logo-light {
    display: none;
}

html[data-theme="light"] .ai-search-logo-dark {
    display: none;
}

html[data-theme="light"] .ai-search-logo-light {
    display: block;
}

.ai-search-text {
    max-width: 640px;
    margin-bottom: 1.5rem;
}

.ai-search-text h3 {
    color: #e6edf3;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.ai-search-text p {
    color: #8b949e;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.ai-search-input {
    width: 100%;
    max-width: 500px;
}

.ai-search-form .input-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #30363d;
    background: #161b22;
}

.ai-search-field {
    border: none;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    background: transparent;
    color: #e6edf3;
    border-radius: 8px 0 0 8px !important;
    transition: all 0.3s ease;
}

.ai-search-field:focus {
    box-shadow: none;
    border: none;
    outline: none;
    background: rgba(0, 222, 70, 0.05);
}

.ai-search-field::placeholder {
    color: #8b949e;
    transition: color 0.3s ease;
}

.ai-search-field:focus::placeholder {
    color: #656d76;
}

.ai-search-btn {
    border: none;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: #000;
    border-radius: 0 8px 8px 0 !important;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.ai-search-btn:hover {
    background: #00c93fb3;
    transform: translateX(1px);
}

.ai-search-btn:active {
    transform: scale(0.98);
}

/* Light theme için AI Search stilleri */


html[data-theme="light"] .ai-search-text h3 {
    color: #24292f;
}

html[data-theme="light"] .ai-search-text p {
    color: #656d76;
}

html[data-theme="light"] .ai-search-form .input-group {
    background: #ffffff;
    border: 1px solid #d0d7de;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .ai-search-field {
    background: transparent;
    color: #24292f;
}

html[data-theme="light"] .ai-search-field::placeholder {
    color: #656d76;
}

html[data-theme="light"] .ai-search-field:focus {
    background: rgba(0, 222, 70, 0.05);
}

.transparent-bg {
    background: transparent !important;
}
/* Responsive AI Search */
@media (max-width: 768px) {
    .ai-search-section {
        padding: 2.5rem 0;
    }
    
    .ai-search-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .ai-search-text h3 {
        font-size: 1.5rem;
    }
    
    .ai-search-text p {
        font-size: 0.95rem;
    }
    
    .ai-search-icon {
        width: 80px;
        height: 80px;
    }
    
    .ai-search-input {
        max-width: 100%;
    }
    
    .ai-search-field {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
    
    .ai-search-btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .ai-search-section {
        padding: 2rem 0;
    }
    
    .ai-search-content {
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .ai-search-text h3 {
        font-size: 1.375rem;
    }
    
    .ai-search-text p {
        font-size: 0.9rem;
    }
    
    .ai-search-icon {
        width: 70px;
        height: 70px;
    }
    
    .ai-search-field {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        text-align: left;
    }
    
    .ai-search-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .ai-search-btn .btn-text {
        display: none;
    }
}

/* Big Chat Hero Section */
.big-chat-hero {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--header-bg, #161b22) 100%);
    border-bottom: 1px solid var(--border-color, #1f2937);
}

.big-chat-card {
    background: var(--card-bg, #21262d);
    border: 1px solid var(--border-color, #30363d);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.big-chat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color, #2ea043);
}

.big-chat-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.big-chat-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ea043 0%, #26a641 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 16px rgba(46, 160, 67, 0.3);
    overflow: hidden;
}

.big-chat-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: brightness(1.1);
    margin-top: 10px;
}

.big-chat-text {
    flex: 1;
}

.big-chat-text h3 {
    color: var(--text-color, #e6edf3);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.big-chat-text p {
    color: var(--text-secondary, #8b949e);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.big-chat-action {
    flex-shrink: 0;
}

.big-chat-action .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.big-chat-action .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(46, 160, 67, 0.4);
}

/* Responsive Big Chat Hero */
@media (max-width: 768px) {
    .big-chat-hero {
        padding: 1.5rem 0;
    }
    
    .big-chat-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .big-chat-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .big-chat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .big-chat-logo {
        width: 45px;
        height: 45px;
    }
    
    .big-chat-text h3 {
        font-size: 1.25rem;
    }
    
    .big-chat-text p {
        font-size: 0.9rem;
    }
    
    .big-chat-action .btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

.w-33{
    width:33% !important;
}

/* Tag Filter Section */
.tag-filter-section {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tag-filter-section h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

#tag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

#tag-filters .btn {
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#tag-filters .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

#tag-filters .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#tag-filters .btn-outline-primary.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive tag filters */
@media (max-width: 768px) {
    .tag-filter-section {
        padding: 1rem;
    }
    
    #tag-filters .btn {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
}

.dashboard-main-title{
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.dashboard-main-subtitle{
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
}