/* Analytics Left Column */
.analytics-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-container-large {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(222, 222, 0, 0.1);
    flex: 1;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.chart-period {
    display: flex;
    gap: 0.5rem;
}

.chart-period span {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.period-active {
    background: var(--primary-color) !important;
    color: var(--black) !important;
    font-weight: 600;
}

.line-chart-large {
    height: 120px;
    margin-bottom: 1rem;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-stats {
    display: flex;
    gap: 2rem;
}

.stat-mini {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-top: 0.25rem;
}

.hashtags-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(222, 222, 0, 0.1);
}

.section-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.trend-indicator {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.hashtag-cloud-large {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hashtag {
    background: rgba(222, 222, 0, 0.1);
    border: 1px solid rgba(222, 222, 0, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.hashtag:hover {
    background: rgba(222, 222, 0, 0.2);
    transform: scale(1.05);
}

.hashtag.xl { font-size: 1rem; font-weight: 700; }
.hashtag.large { font-size: 0.9rem; font-weight: 600; }
.hashtag.medium { font-size: 0.8rem; }
.hashtag.small { font-size: 0.7rem; opacity: 0.8; }

/* Analytics Right Column */
.analytics-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
	margin: 1.5rem 0;
}

.top-content-large {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(222, 222, 0, 0.1);
    flex: 1;
}

.view-all {
    color: var(--primary-color);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.view-all:hover {
    opacity: 0.8;
}

.content-grid-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    gap: 0.75rem;
    height: 180px;
}

.content-card-large {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.content-card-large.featured {
    grid-row: 1 / -1;
}

.content-card-large:hover {
    transform: scale(1.02);
}

.content-image-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    border-radius: 8px;
}

.content-image-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
    border-radius: 6px;
}

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.content-stats-large {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-size: 0.8rem;
}

.stat-row i {
    font-size: 0.7rem;
    opacity: 0.8;
}

.content-trend {
    background: rgba(255, 69, 0, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
}

.content-card-small {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: var(--transition);
}

.content-card-small:hover {
    background: rgba(222, 222, 0, 0.05);
}

.content-stats-compact {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
}

.views-compact {
    color: var(--primary-color);
    font-weight: 600;
}

.engagement {
    color: var(--text-dark);
}

.insights-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(222, 222, 0, 0.1);
}

.ai-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 0.5rem;
    background: rgba(222, 222, 0, 0.05);
    border-radius: 6px;
    transition: var(--transition);
}

.insight-item:hover {
    background: rgba(222, 222, 0, 0.1);
}

.insight-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-analytics {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .dashboard-toolbar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .dashboard-content-large {
        padding: 1rem;
    }
    
    .chart-container-large {
        padding: 1rem;
    }
    
    .hashtags-section {
        padding: 1rem;
    }
}