.favorites-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.favorite-card {
    background-color: #f9f9ff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.favorite-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.favorite-card h3 {
    color: #1f2937;
    margin-bottom: 10px;
}

.favorite-card p, .favorite-card li {
    margin: 4px 0;
    color: #374151;
}

.favorite-card ul {
    list-style: none;
    padding-left: 0;
}

.favorite-card a {
    color: #2563eb;
    text-decoration: none;
}

.favorite-card a:hover {
    text-decoration: underline;
}

.favorite-card .btn-submit {
    margin-top: 15px;
    background-color: #ef4444;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.favorite-card .btn-submit:hover {
    background-color: #b91c1c;
}

@media screen and (max-width: 768px) {
    .favorite-card {
        padding: 16px;
    }
}