body {
    font-family: Arial, sans-serif;
    background-color: #f5f6fa;
    margin: 0;
    padding: 2rem;
}

.favorites-container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1 {
    margin-bottom: 1rem;
}

.favorites-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.favorite-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #ddd;
}

.favorite-item:last-child {
    border-bottom: none;
}

.favorite-name {
    font-size: 1rem;
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.remove-btn:hover {
    transform: scale(1.1);
}

.empty-message {
    text-align: center;
    color: #777;
    margin-top: 1rem;
}

.hidden {
    display: none;
}
