/* Section-specific styles are in css/pages/subdirectory */

@import url('pages/dashboard.css');
@import url('pages/ai.css');
@import url('pages/git-explorer.css');
@import url('pages/tools.css');
@import url('pages/workspace.css');

/* Common Page Header & Entry */
.page-header {
    margin-bottom: 24px;
}

.page-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.6;
}

.page-enter {
    animation: pageEnter 0.3s ease forwards;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.3rem;
    }
}

/* Git Explorer overrides for Light Mode */
:root.light-mode .three-canvas-wrap,
:root.light-mode .git-3d-cmd-wrap {
  background: var(--bg-primary);
}

:root.light-mode .git-3d-overlay {
  background: rgba(255, 255, 255, 0.9);
}

:root.light-mode .commit-detail-card {
  background: rgba(0, 0, 0, 0.02);
}