:root {
    --primary-color: #D92131;
}

body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar-brand {
    font-weight: 600;
    color: var(--primary-color) !important;
}

.idea-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.idea-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.vote-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.vote-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.vote-btn:hover {
    background-color: #f0f0f0;
}

.vote-btn.active.upvote {
    color: #198754;
}

.vote-btn.active.downvote {
    color: #dc3545;
}

.vote-count {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 2rem;
    text-align: center;
}

.idea-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.idea-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.idea-title a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.idea-details {
    color: #6c757d;
    font-size: 0.95rem;
}

.idea-meta {
    font-size: 0.85rem;
    color: #868e96;
}

.badge-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

