/* FeedVault Base Styles */
body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Dark Mode Overrides */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}
body.dark-mode .card {
    background-color: #1e1e1e;
    border-color: #333;
}
body.dark-mode .navbar {
    background-color: #000 !important;
}

.article-row {
    cursor: pointer;
}
.article-row:hover {
    background-color: rgba(0,0,0,0.05);
}
body.dark-mode .article-row:hover {
    background-color: rgba(255,255,255,0.05);
}

.sidebar {
    min-height: calc(100vh - 56px);
    border-right: 1px solid #dee2e6;
    padding-right: 15px;
}
body.dark-mode .sidebar {
    border-right: 1px solid #333;
}
