
/* Feature Request Cards */
.feature-request-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-request-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.feature-title:hover {
    background-color: #f3f4f6;
}

.feature-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.chevron {
    width: 1.5rem;
    height: 1.5rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.feature-description {
    padding: 1.5rem;
    background-color: white;
    border-top: 1px solid #e5e7eb;
}

.feature-description p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.vote-button {
    background-color: #4f46e5;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vote-button:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.vote-button:active {
    transform: translateY(0);
}

/* Responsive adjustments for feature cards */
@media (max-width: 768px) {
    .feature-title {
        padding: 1rem;
    }

    .feature-title h3 {
        font-size: 1.125rem;
    }

    .feature-description {
        padding: 1rem;
    }

    .chevron {
        width: 1.25rem;
        height: 1.25rem;
    }
}