 /* Homepage Base Container */
.home-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 10px 0;
}

 .welcome-banner {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* <-- Change this line right here */
    gap: 16px;
}

.welcome-text h1 {
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0 0 6px 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.welcome-text p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

.system-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

/* Three Column Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.blue-glow { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.green-glow { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.orange-glow { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    color: #6b7280;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Split Column Layout for Logs & Info */
.home-split-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

.panel-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
}

.panel-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

/* Activity Timelines */
.log-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.log-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 12px;
    border-left: 2px solid rgba(59, 130, 246, 0.4);
}

.log-time {
    color: #6b7280;
    font-size: 0.75rem;
}

.log-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.log-desc strong {
    color: #10b981;
}

/* Info Panel Adjustments */
.info-text {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-alert-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 14px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.4;
    align-items: flex-start;
}

.info-alert-box i {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Mobile Layout Collapse */
@media (max-width: 768px) {
    .home-split-layout {
        grid-template-columns: 1fr;
    }
    .welcome-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}
