.feeling-card {
    background: var(--secondary-gradient);
    transition: all 0.3s ease;
}

.feeling-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.positive-card {
    border-left: 4px solid var(--accent-color);
}

.difficult-card {
    border-left: 4px solid #E53E3E;
}

.cursor-pointer {
    cursor: pointer;
}

.specific-feelings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.specific-feelings .btn {
    min-width: 120px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #E8E6FD 0%, #C5BFFA 100%);
    color: #2A1F94;
    border: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 16px;
}

.specific-feelings .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-container {
    transition: opacity 0.3s ease;
}

.d-none {
    display: none !important;
}

#selectedFeelingCard {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
}

#selectedFeelingCard .heading-text,
#selectedFeelingCard .lead {
    color: white;
}

@media (max-width: 768px) {
    .specific-feelings .btn {
        min-width: calc(50% - 1rem);
    }
}
